#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;
}
#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);
}

.display {
    display: grid; 
    
    width: 100%;
    max-width: 100vw;   
    padding: 30px;
    gap: 10px;
    box-sizing: border-box;
}
.display.double {
    grid-template-columns: 1fr 1fr;
}
.display.single {
    grid-template-columns: .5fr 1fr .5fr;
}
.display.single .wrapper {
    grid-column: 2 / 3;
}
.display.none {
    display: none;
}
.content {
    display: flex;
    gap: 20px;
    background-color: rgba(255,0,0,.12);
    padding: 20px;
    border-radius: 10px;
}
.content img {
    width: 30%;
}
.content .wrapper {
    display: flex;
    flex-flow: column;
}
.content .wrapper .title {
    font-size: 2rem;
}

.history {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-flow: column;
    height: fit-content;
    width: 100%;
    margin-bottom: 10px;
}

.history .content {
    width: fit-content;
    max-width: 90%; 
    box-sizing: border-box;   
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.history .edition {
    display: flex;
    flex-flow: column;
    gap: 0;
    width: fit-content;
    justify-content: center;
    align-items: center;
}
.history .edition img {
    width: 200px;
    max-width: 100%;
}
.history .edition p {
    width: fit-content;
    font-size: 1.1rem;
    font-weight: 600;
}

.index_open {
    transition: all .5s;
    box-sizing: border-box;
    border: 3px solid rgba(255,255,255,0);
}
.index_open:hover {
    border-color: rgba(200,0,0,1);
    cursor: pointer;
}

.index {
    display: flex;
    position: fixed;
    z-index: 100;
    align-items: center;
    justify-content: center;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
}
.index img {
    max-height: 80%;
    max-width: 90%;
}
.index i {
    position: absolute;
    font-size: 3.5rem;
    color: rgb(200,0,0);
    bottom: 0;
}
.index i:hover {
    cursor: pointer;
}

@media screen and (max-width: 1100px) {
    .display,
    .display.single {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 500px) {
    .display .content {
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }
    .display .content img {
        width: 50%;
    }
    #pres h1 {
        font-size: 3rem;
    }
}