/* content */
#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("../images/bg_content.webp");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    /* background-image: linear-gradient(to right, rgb(255, 212, 102), rgb(255, 236, 189)); */
    /* background-color: white; */
}

#descriptionDivWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    margin: 30px 0px 100px 0px;
    width: 100%;
}

.descriptionDiv {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    margin: 20px;
    width: 20%;
    border-radius: 10px;
    font-family: 'Assistant', sans-serif;
    font-weight: 100;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: rgba(255, 255, 255, .2) 0 3px 50px inset, rgba(0, 0, 0, .1) 0 3px 20px, rgba(0, 0, 0, .1) 0 5px 13px;
}

.descriptionDiv h3 {
    font-weight: 200;
    color: rgb(184, 114, 1);
    font-size: clamp(20px, 3vw, 30px);
}

.descriptionDiv p {
    color: white;
    font-size: clamp(16px, 3vw, 22px);
}

#content h2 {
    font-weight: lighter;
    font-size: clamp(24px, 5vw, 46px);
    font-family: 'Assistant', sans-serif;
    font-weight: 200;
    text-align: center;
    color: white;
    margin-top: 50px;
}

#zoomIcon {
    width: 70px;
}

@media (max-width: 1300px) {
    .descriptionDiv {
         width: 70%;
     }
   }