@media (max-width: 768px) {
    #hero div{
        font-size: min(4vw, 1.2rem);
    }
}

@media (min-width: 769px) {
    #hero div{
        font-size: 1.3rem;
    }
}

#hero{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

#hero div{
    justify-content: center;
    align-content: center;
    text-align: center;
    height: fit-content;
}

#hero svg{
    min-height: 60px;
    max-height: 80px;
    height: 6vw;
    margin: 0px 10px;

}

#hero svg path{
    fill: white;
}

#heroSubTitle{
    display: flex;
    color: white;
    font-weight: 500;
    margin: 20px 0px;
}



#heroButtons{
    font-weight: 500;
    display: flex;
}

#heroButtons a{
    width: 160px;
}

.arrow {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.arrow span {
    display: block;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-15px, -15px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(15px, 15px);
    }
}

#heroText{
    white-space: nowrap;
    overflow: hidden;
    width: auto;
    animation: typewriter 7s steps(100, end) alternate infinite;
    max-width: fit-content;
}

@keyframes typewriter {
    from{
        width: 0%;
    }
    to{
        width: 100%;
    }
}
