/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 600px 1fr;
  height: 100vh;
  
  background-color: #2f0236;
  color: #cf6329;
  font-family: "MonaspaceNeon", monospace;
  font-size: 1rem;     /* Large so you see differences */
  letter-spacing: 1.5px; /* Monaspace reacts to this */
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: #2f0236;
}

.main {
  overflow-y: scroll;
  height: 100vh;
  padding: 20px;
}

.vl {
  border-left: 2px solid green;
  height: 1000px;
  position: absolute;
  left: 25%;
  margin-left: -3px;
  top: 0;
}

.vr {
  border-left: 2px solid green;
  height: 1000px;
  position: absolute;
  left: 75%;
  margin-right: -3px;
  top: 0;
}
