.about {
    width: 80%;
    margin: auto;
    margin-top: 188px;
    margin-bottom: 128px;
    display: flex;
    /* flex-wrap: wrap; */
    align-items: flex-start;
    justify-content: center;
    gap: 96px;
}

.about-img {
    max-width: 50%;
    flex: 50%;
}

.about-desc {
    flex: 50%;
    max-width: 450px;
}

.about-title {
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: -1px;
    color: #868e96;
    margin-bottom: 32px;
}

.about-paragraph {
    font-size: 18px;
    color: #343a40;
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn {
    transition: 0.2s;
}

.btn:link,
.btn:visited {
    /* background-color: #e67700; */
    padding: 16px 32px;
    font-size: 18px;
    color: #e67700;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 500;
    border-radius: 100px;
    border: 1px solid #e67700;
}

.btn:hover,
.btn:active {
    background-color: #e67700;
    color: white;
}

@media screen and (max-width: 800px) {
    .about-img {
        max-width: 100%;
    }

    .about {
        flex-wrap: wrap;
        gap: 48px;
        margin-top: 108px;
    }
}
