#pres {
    padding: 4% 0;
    background-image: url("../media/TestImages/background-pres_2.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 100%;
    display: block;
}
#pres h1 {
    font-size: 5rem;
    text-align: center;
}
#pres h3 {
    font-weight: 400;
    text-align: center;
}
#pres .sec-wrapper {
    color: black;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 5% 10px;
    background-color: rgba(255, 255, 255, 0.596);
}
#pres.hide {
    display: none;
}

.comm-wrapper {
    width: 100%;
    display: grid;
    box-sizing: border-box;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    padding: 20px;
    
}
.comm-wrapper .content {
    background-color: rgba(0, 0, 0, 0.103);
    box-shadow: rgba(0, 0, 0, 0.185) 5px 10px 10px 5px;
    padding: 15px 30px;
    border-radius: 5px;
    display: flex;
    flex-flow: column;
}
.comm-wrapper .desc {
    margin-bottom: 10px;
}
.comm-wrapper .show {
    padding: 7px 14px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: rgba(0, 200, 200, 0.281) 5px 5px 5px;
    align-self: center;
}

.commission {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 2%;
}
.commission .name {
    font-size: 3rem;
    text-shadow: rgba(0, 0, 0, 0.425) 5px 5px 10px;
}
.commission .cont {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
.commission .cont img {
    box-shadow: rgba(0,0,0,0.425) 10px 10px 10px;
    max-width: 45%;
    width: auto;
    height: 100%;
}

@media screen and (max-width: 1100px) {
    #pres h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 1000px) {
    .comm-wrapper {
        grid-template-columns: 1fr;
    }
    .commission .cont {
        flex-flow: column;
        justify-content: center;
    }
    .commission .cont img {
        max-width: 90%;
    }
}