#hero .container {
    padding: 0;
    margin: var(--navbar-height) 0;
}

#hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 2rem 0 4rem;
    line-height: 1;
}

#hero p {
    max-width: 800px;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 3rem;
}

#hero p strong {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.125);
}

#hero .learn-more {
    text-align: center;
}

#hero .learn-more a {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    padding: 0.75rem 4rem;
}


#hero .move-next-section {
    display: none;
}

@media (min-width: 992px) {
    #hero h1 {
        font-size: 3.5rem;
    }

    #hero p {
        font-size: 2rem;
    }

    #hero .learn-more {
        text-align: left;
    }

    #hero .move-next-section {
        display: block;
        position: absolute;
        bottom: 2rem;
        left: calc((100% - 5rem) / 2);
        width: 5rem;
        height: 5rem;
        color: var(--light-color);
        animation: bounce 3s infinite;
    }
}


/* Animations */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}
