.hero {
    display: flex;
    width: 100%;
    max-height: 80vh;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 3rem 0;
    gap: 2rem;
}

.hero img {
    height: 80%;
    max-height: 40vh;
}

.hero h1 {
    text-align: start;
    max-width: 50%;
    /* max-height: 40vh; */
}

.hero-buttons {
    height: 56px;
    display: flex;
    margin: 3.5rem 0;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 600px) {
    .hero img {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        margin-top: 5rem;
    }
}