#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;
}

.infobox {
    background-color: #000000;
    border: solid 3px gray;
    height: 45vh;
    width: 95vw;
    z-index: 100;
}

.infotext {
    color: white;
    position: relative;
    height: 100%;
    width: 95%;
    font-size: 14pt;
    left: 3%;
}

.spacebox {
    height: 20vh;
    width: 99vw;
    z-index: 100;
}

.spacebox2 {
  height: 2vh;
  width: 99vw;
  z-index: 100;
}

.collapsible {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: solid 3px gray;
    text-align: left;
    outline: none;
    font-size: 14pt;
    z-index: 106;
  }
  
  .active, .collapsible:hover {
    background-color: rgb(49, 49, 49);
    z-index: 106;
  }
  
  .content {
    padding: 10px 0px 10px 20px;
    display: none;
    overflow: hidden;
    border: solid 3px gray;
    color: rgb(255, 255, 255);
    font-size: 16pt;
    background-color: #000000;
    z-index: 106;
  }

#parent {
    position: relative;
    background: transparent;
    z-index: 100;
    top: -1%;
    left: -1%;
}

#backgroundOVerlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.753);
    height: 100vh;
    width: 100vw;
    top: 0%;
    left: 0%;
    z-index: 2;
}