#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: 25vh;
  left: 1vw;
  width: 95vw;
  border: solid 4px rgb(97, 97, 97);
  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: 40vw 40vw;
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  padding-top: 5vh;
  padding-left: 2vw;
  padding-bottom: 10vh;
  z-index: 102;
}
#item {
  position: relative;
  background-color: #000000;
  border: 3px solid #FFFFFF;
  text-align: center;
  height: 20vh;
  width: 40vw;
  font-size: 25pt;
  font-weight: 400;
  color:#FFFFFF;
  z-index: 102;
}
#containerFull {
  display: grid;
  grid-template-columns: 85vw;
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  padding-top: 5vh;
  padding-left: 5vw;
  padding-bottom: 10vh;
  z-index: 102;
}
#itemFull {
  position: relative;
  background-color: #000000;
  border: 3px solid #FFFFFF;
  text-align: center;
  height: 30vh;
  width: 85vw;
  color:#FFFFFF;
  z-index: 102;
}