
body {
  color: black;
  font-family: "Consola";
    background-image: url("backgrounds/snowbackground.gif");

}

@font-face {
  font-family: "Consola";
  src: url("fonts/CONSOLA.TTF") format("truetype");
}


.page  {
  z-index: 0;  
  display: flex;
  position: fixed;
  width: 100vw;
  height: 100vh;
}

.overlay  {
  z-index: 6;
  display: flex;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-image: url("backgrounds/snowoverlay.gif");
}

.container {
  z-index: 2;
  background-color: white;
  text-align: center;
  position: fixed;
  bottom: 10vh;
  left: 10vw;
  top: 10vh;
  right: 10vw;
  border: 1px solid black;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  position: fixed;
  top: 5vh;
  left: 10vw;
  bottom: 90vh;
  right: 10vw;
  background-color: transparent;
}

.flex-item {
  z-index: 1;
  background-color: lightgray;
  height: 5vh;
  width: 10vw;
  border: 1px solid black;
  border-radius: 10px;
  display: flex;
  text-align: center;  
  flex-direction:column;
  justify-content:space-around;
}

.main {
  z-index: 3;
  text-align: left;
  position: fixed;
  background-color: lightgray;

  top: 15vh;
  left: 35vw;
  bottom: 15vh;
  right: 15vw;
  border-radius: 10px;
  overflow: auto;
  border: 5px double black;
  padding: 5px 20px;
}

.sidebar  {
  z-index: 3;
  text-align: left;
  position: fixed;
  top: 15vh;
  left: 15vw;
  bottom: 15vh;
  right: 70vw;
  border: 5px double black;
  border-radius: 10px;
  padding: 5px 20px;
}