.hero {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 102vh;
}

/*NAV*/
nav {
    position: absolute;
    top: 10%;
    text-decoration: none;
    font-family: "Inconsolata", monospace;
    font-weight: 700;
    font-size: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    margin: 0px 10px 0px 10px;
}

/*TITLE*/

.hero h1 {
    background-image: url(/images/background-title.webp);
    background-size: cover;
    color: transparent;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 9vw;
}

/*TEXT*/

.hero .text-animation {
    min-height: 60px;
}

/*ICONS*/

.hero a {
    text-decoration: none;
    color: white;
}

/*ARROWS*/

.hero .arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: 20px;
    padding: 0;
}

.hero .arrows path {
    stroke: var(--c5);
    fill: transparent;
    stroke-width: 1px;
    animation: arrow 2s infinite;
    -webkit-animation: arrow 2s infinite;
}

@keyframes arrow {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes arrow {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.hero .arrows path.a1 {
    animation-delay: -1s;
    -webkit-animation-delay: -1s;
}

.hero .arrows path.a2 {
    animation-delay: -0.5s;
    -webkit-animation-delay: -0.5s;
}

.hero .arrows path.a3 {
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
}
