#hero {
    font-family: 'Lulo Clean W01 One Bold', sans-serif;
    font-size: 2.5em;
    display: flex;
    color: #fff;
    background-image: url(../images/background-hero.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 75px);
}

.hero-main {
    backdrop-filter: blur(2px);
    height: calc(100vh - 75px);
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: 'Lulo Clean', sans-serif;
    font-size: 65px;
    -webkit-text-stroke: 0.5px black;
    letter-spacing: 0;
    color: white;
    margin-right: 130px;
}

.hero-main h1 {
    width: 50px;
}

.hero-main h5 {
    font-family: 'Avenir Light', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

.hero-main h1 {
    font-size: 65px;
}

section {
    height: 100vh;
}

.apps-showcase {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    gap: 0;
}

.apps-showcase .h1{
    margin: 0px 100px 0px 100px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

div.container.blinkr a div.logo.blinkr img {
    width: 90px;
}

div.container.PFM-SEARCH a div.logo.PFM-SEARCH img {
    width: 200px;
}

div.container.lexius a div.logo.lexius img {
    width: 100px;
}

div.container.relay a div.logo.relay img {
    width: 300px;
}

.container {
    position: relative;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    transition: all 0.5s;
    cursor: pointer;
}

.container::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 70%;
    top: -50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    color: #00D646;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.container::after {
    content: "";
    position: absolute;
    left: 150%;
    top: 40%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #FFFFFF;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Show Tooltip on Hover */
.container:hover::before,
.container:hover::after {
    opacity: 1;
    visibility: visible;
}

.relay-container::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 70%;
    top: -5%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    color: #00D646;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}