.hero {
    margin-left: 100px;
    margin-right: 100px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 150px;
}

.hero-text {
    width: 80%;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    height: 70%;
    object-fit: contain;
}

.hero-text {
    margin-bottom: 40px;
    margin-top: 24px;
    font-size: 1.2em;
    color: #535862;
}

@media (orientation: portrait) {
    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-top: 50px;
        padding: 50px;
    }

    nav {
        padding-left: 10%;
        padding-right: 10%;
        flex-direction: column;
        justify-content: space-between;
        align-content: center;
    }

    .hero-text {
        width: 100%;
    }

    .rounded-md {
        font-size: 0.7rem;
    }

}
