#about-container {
    background: #edece9;
}

#about {
    width: 80%;
    margin: 20px auto;
    padding: 40px;
    background-color: #fff;
    border-width: 2px;
    border-style: solid;
    border-color: #eee #eee #d5d5d5 #eee;
    box-shadow: 0 5px 0 rgb(200 200 200 / 20%);
}

.about-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 65px;
    width: 80%;
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
    border-width: 2px;
    border-style: solid;
    border-color: #eee #eee #d5d5d5 #eee;
    box-shadow: 0 5px 0 rgb(200 200 200 / 20%);
}

#title-about {
    font-family: "Caudex", serif;
    font-size: 46px;
    line-height: 1.33em;
    font-weight: 400;
    color: #7f6459;
}

.title-about-box {
    text-align: center;
    margin: 20px;
    padding-top: 40px;
}

.about-paragraph {
    font-size: 13px;
    line-height: 1.6em;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    margin: 0;
}

#image-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    margin: 60px 130px 0;
}

.medium-image {
    width: 100%;
    height: auto;
    box-shadow: 4px 6px 8px 4px rgb(0 0 0 / 40%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    margin-bottom: 60px;
}

.new-height {
    height: 85%;
}

@media screen and (max-width: 700px) {
    #title-about {
        margin-top: 40px!important;
        margin: 30px 20px 20px;
        font-size: 34px;
        margin: 0;
        padding: 10px;
    }
    #image-container {
        display: grid;
        grid-template-columns: 1fr;
        margin: 20px 20px 0;
    }
    .medium-image {
        margin-bottom: 20px;
    }
    .about-1 {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}