.hero {
    background-color: rgba(156, 118, 63, 1);
}

#link {
    color: #00E676;
    position: relative;
    transition: color 0.3s ease;
    text-wrap: nowrap;
}

#link:hover {
    color: white;
    transition: color 0.3s ease;
}

#link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #00E676;
    transition: width 0.3s ease;
}

#link:hover::after {
    width: 100%;
    background-color: white;
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10rem;
    max-width: 80%;
    margin: 0 auto;
    padding: 4rem;
}

.hero-text, .hero-image {
    flex: 1;
}

.hero img {
    height: auto;
    width: 100%;
    max-width: 100%;
}

.btn-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

@media screen and (max-width: 1600px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }

    .btn-row {
        justify-content: center;
    }
}

@media screen and (max-width: 992px) {
    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }

    .btn-row {
        flex-direction: column;
    }
}