@font-face {
    font-family: 'Facile Sans';
    src: url('../fonts/facile_sans/FacileSans.woff2') format('woff2'),
        url('../fonts/facile_sans/FacileSans.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    display: flex;
    overflow: hidden;
    background: linear-gradient(45deg, #ff00ee, #4affa0, #ff00ee);
    background-size: 200%;
    animation: gradient 10s linear infinite;
    justify-content: center;
}

.hexagon {
    color: #101038;
    font-size: 130px;
    line-height: 80px;
    margin-right: 40px;
}

.grid {
    width: 100vw;
    overflow: hidden;
}

.grid div {
    white-space: nowrap;
    margin-top: -45px;
    user-select: none;
}

.even {
    margin-left: -28px;
}

.odd {
    margin-left: -103px;
}

.content {
    width: 100vw;
    color: #fff;
    position: absolute;
    text-align: center;
    margin-top: 20vh;
}

.content h1 {
    font-size: calc(60px + 3vw);
    font-family: "Facile Sans", "Trebuchet MS";
    line-height: 60px;
    margin-bottom: 25vh;
}

.content h1 span {
    font-size: calc(110px + 3vw);
}

.content p {
    width: 100%;
    font-size: calc(16px + 1.5vw);
    font-family: "Facile Sans", "Trebuchet MS";
    position: absolute;
    margin: -15vh auto;
    animation: text-pulse 5s linear infinite;
}

.content a {
    color: #fff;
    font-size: 30px;
    font-family: "Facile Sans", "Trebuchet MS";
    text-decoration: none;
    padding: 15px;
    border: 2px solid #fff;
    border-radius: 15px;
}

.content a:hover {
    color: #101038;
    background-color: rgba(255, 255, 255, 0.8);
}

@keyframes gradient {
    from {
        background-position: 0% 0%;
    }
    to {
        background-position: 200% 200%;
    }
}

@keyframes text-pulse {
    0% {
        font-size: calc(16px + 2vw);
    }
    25% {
        font-size: calc(16px + 2.2vw);
    }
    75% {
        font-size: calc(16px + 1.8vw);
    }
    100% {
        font-size: calc(16px + 2vw);
    }
}