body {
  background-color: black;
  z-index: 0;
  font-family: "VT323", monospace;
  font-weight: 300;
  color: white;
}

a {
  color: yellowgreen;
}

a:hover {
  color: white;
}

li {
  list-style-type: decimal;
}
h1 {
  text-align: center;
}

h2 {
  /* font-family: "Xanh Mono", monospace; */
  text-align: center;
  margin-top: 4%;
  width: 100%;
  position: fixed;
}

h3 {
  position: fixed;
  padding: 5px;
  margin: 5% 35%;
  width: 30%;
  bottom: 10%;
  font-size: 20px;
  background-color: white;
  color: black;
}

#enter {
  position: fixed;
  bottom: 8%;
  margin: 0% 46%;
  font-family: "VT323", monospace;
  font-size: 40px;
}

.navBar {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.navlink {
  text-decoration: underline;
  font-family: "VT323", monospace;
  font-size: 20px;
  cursor: pointer;
  border-radius: 20px;
  padding: 10px;
}

.modal {
  /* display: none; */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 31%;
  top: 15%;
  width: 100%; /* Full width */
  /* height: 100%; */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content-left {
  display: block;
  font-family: monospace;
  font-size: 15px;
  line-height: 1.3;
  background-color: black;
  color: white;
  /* margin: 12% auto; */
  padding: 20px;
  border: 1px solid #888;
  width: 35%; /* Could be more or less, depending on screen size */
}

/* Modal Content/Box */
.modal-content-right {
  display: none;
  font-family: monospace;
  font-size: 15px;
  line-height: 1.3;
  background-color: black;
  color: white;
  margin-left: -4%;
  padding: 20px 20px 5px 20px;
  border: 1px solid #888;
  width: 45%;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 40px;
  font-weight: bold;
}

.back {
  color: #aaa;
  margin-left: 43%;
  font-size: 70px;
  font-weight: bold;
}

.next {
  color: #aaa;
  margin-left: 45%;
  font-size: 70px;
  font-weight: bold;
}

.next:hover,
.next:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

canvas {
  margin: 5% 30%;
  position: fixed;
  z-index: -1;
}

@media all and (max-width: 600px) {
  canvas {
    scale: 0.5;
    margin: 10% -16%;
  }

  h3 {
    margin: 5% 15%;
    bottom: 14%;
    width: 60%;
  }

  #enter {
    margin: 0% 35%;
  }

  .modal {
    left: 30px;
    top: 70px;
    /* display: flex;
    flex-direction: column;
    justify-content: space-around; */
  }

  .modal-content-left {
    padding-bottom: 10px;
    width: 75%;
  }

  .modal-content-right {
    width: 80%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch; /* Lets it scroll lazy */
  }
}
