
.parent {
    display: grid;
    grid-template-columns: 10% 1fr 1fr 1fr 10%;
    grid-template-rows: repeat(11, 1fr);
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    
}

.div1 { grid-area: 1 / 2 / 2 / 2; }
.div2 { grid-area: 1 / 3 / 2 / 3; }
.div3 { grid-area: 1 / 4 / 2 / 4; }
.div4 { grid-area: 2 / 2 / 2 / 2; }
.div5 { grid-area: 2 / 3 / 2 / 3; }
.div6 { grid-area: 2 / 4 / 2 / 4; }
.div7 { grid-area: 3 / 2 / 3 / 2; }
.div8 { grid-area: 3 / 3 / 3 / 3; }
.div9 { grid-area: 3 / 4 / 3 / 4; }
.div10 { grid-area: 4 / 2 / 4 / 2; }
.div11 { grid-area: 4 / 4 / 4 / 4; }
.div12 { grid-area: 5 / 2 / 5 / 4; }
.div13 { grid-area: 6 / 2 / 6 / 2; }
.div14 { grid-area: 5 / 3 / 5 / 3; }
.div15 { grid-area: 5 / 4 / 5 / 4; }
.div16 { grid-area: 4 / 3 / 4 / 3; }
.div17 { grid-area: 6 / 3 / 6 / 3; }
.div18 { grid-area: 6 / 4 / 6 / 4; }

section button{
    min-width: 3em;
    min-height: 3em;
    cursor: pointer;
}
.modal{
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0, 0, 0, 0.4);
}
.modal-content{
    background-color: rgb(211, 168, 168);
    margin: 15% auto;
    padding: 1em;
    border: 2px solid #000;
    width: 80%;
    min-height: 60vh;
    justify-content: space-between;
}
.modal-main-flex{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;

}
.close{
    color: #000000;
    float: right;
    font-size: 2em;
    font-weight: bold;
    margin: auto 1%;
}
.close:hover,
.close:focus{
    color: #ff0000;
    text-decoration: none;
    cursor: pointer;
}

.tooltip{
    position: absolute;
    background: #000;
    color: #fff;
    padding: 0.5em;
    border-radius: 4px;
    font-size: 1em;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    z-index: 2;
    margin-left: -2em;
}
.tooltip.show{
    opacity: 1;
}

.info{
    font-size: 1.5em;
    text-align: center;
    width: 60%;
    padding: 2em;
    margin: 0 auto;
    background-color: rgba(211, 168, 168,0.8);
    border-radius: 20px;
    border-style: solid;
    border-width: 2px ;
}

.Res-Title{
    padding-top: 0;
    padding-bottom: 10%;
    margin: 0;
    font-size: 4rem;
    text-align: center;
}
@media (max-width: 768px) {
    h1{
        font-size: 4em;
    }
    .parent{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .info{
        width: 100%;
    }
}