#background {
    position: fixed;
    background-image: url(../../images/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100vw;
    top: 0%;
    left: 0%;
    z-index: 1;
}  

#gridParent {
    position: absolute;
    background-color: black;
    top: 20%;
    left: 3%;
    width: 90vw;
    border: solid 4px rgb(97, 97, 97);
    z-index: 100;
}

#spacebox {
    height: 5vh;
    width: 99vw;
    z-index: 100;
}

#backgroundOVerlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.753);
    height: 100vh;
    width: 100vw;
    top: 0%;
    left: 0%;
    z-index: 2;
}
#container {
    display: grid;
    grid-template-columns: 21.2vw 21.2vw;
    grid-auto-flow: row;
    grid-column-gap: 90px;
    grid-row-gap: 10px;
    padding-top: 2vh;
    padding-left: 2vw;
    padding-bottom: 2vh;
    z-index: 102;
  }
#item {
    background-color: rgb(221, 221, 221);
    border: 3px solid rgb(97, 97, 97);
    text-align: center;
    height: 140px;
    width: 40vw;
    font-size: 20pt;
    font-weight: 700;
    text-decoration: underline;
    z-index: 102;
  }