@media only screen and (max-width: 600px) {
  body{
    margin: 0;
    min-height: 100vh;
    overflow: hidden;
  }
canvas{
  position:fixed;
  top:0;
  left:0;
  width: 200vw;
  z-index:-1;
  overflow:hidden;
  display:block;
}
.legend-container{
  display:flex;
  z-index:2;
}
.legend{
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: black;
  color: white;
  opacity: 0.7;
  width: 60%;
}
.legend-content{
  font-family: 'ft88regular';
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 5px;
  text-align: center;
}
.legend-content p{
  text-align: justify;
}
.right-nav-container {
  margin: 20px;
  text-align: right;
  z-index: 10; 
}
.right-nav{
  font-family: 'ft88expanded';
  font-size: 2vw;
  color: white;
  background-color: black;
  opacity: 0.7;
  padding:5px;
}
}

@media only screen and (min-width: 767px) {
body{
    margin:0 auto;
    display:flex;
    min-height: 100vh;
    flex-direction:column;
    overflow: hidden;
  }
  .footer{
    position:absolute;
    bottom:0;
  }
  canvas{
    position: fixed;
    top:0;
    left:0;
    width: auto;
    height:100vh;
    width:100vw;
    overflow:hidden;
    z-index:-1;
  }
  .legend-container{
    display:flex;
    z-index:2;
  }
  .legend{
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: black;
    color: white;
    opacity: 0.7;
    width: 30%;
  }
  .legend-content{
    font-family: 'ft88regular';
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 5px;
    text-align: center;
  }
  .legend-content p{
    text-align: justify;
    font-size: 0.5vw;
  }

  .right-nav-container {
    margin: 25px;
    text-align: right;
    z-index: 10; 
  }
  .right-nav-container:hover {
    cursor: url('https://raw.githubusercontent.com/coob113/fancy-cursors/master/clean2.png');
    user-select: none !important;
  }
  .right-nav{
    font-family: 'ft88expanded';
    font-size: 0.6vw;
    background-color: black;
    color: white;
    opacity: 0.7;
    padding:10px;
  }
  .right-nav:hover{
    color: black;
    background-color: white;
    user-select: none;
  }

}