.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
}

.hero .hero-content {
    max-width: 750px;
    min-height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero .hero-content .app-name {
    color: var(--primary-color);
    font-size: 30px;
    font-weight: bold;
}

.hero .hero-content .title {
    color: var(--text-color);
    font-size: 40px;
    font-weight: bold;
}

.hero .hero-content .description {
    color: var(--dark-gray-color);
    font-size: 1rem;
    padding: 1rem 0;
    line-height: 2rem;
}

.hero .animated-boxes {
    width: 100%;
    align-items: end;
    position: relative;
    margin-top: 8rem;
}

.hero .animated-boxes img {
    width: 100%;
    animation-name: hero_animated_boxes;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
}

.hero .animated-boxes div:nth-child(1) img {
    animation-delay: 0s;
}

.hero .animated-boxes div:nth-child(2) img {
    animation-delay: -0.5s;
}

.hero .animated-boxes div:nth-child(3) img {
    animation-delay: -1s;
}

.hero .animated-boxes div:nth-child(4) img {
    animation-delay: -1.5s;
}

@keyframes hero_animated_boxes {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 1199.99px) {
    .hero {
        min-height: 75vh;
    }
}
