/* 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 {
    background-color: black;
    color: #4be3de;
    font-family: "Courier New", Courier, monospace;
    font-size: 103%
}

a {
    color: #f407a3;
}

p {
  text-align: center;
}

h1 {
  text-align: center;
}

.button {
  background-color: #312d32;
  border: none;
  color: #ae00ff;
  padding: 10px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: crosshair;
  font-family: courier;
}

.sidenav {
  height: 100%;
  width: 180px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #000;
  overflow-x: hidden;
  padding-top: 30px;
  padding-left: 5px;
}

.sidenav a {
  padding: 6px 8px 6px 8px;
  background-color: #000;
  text-decoration: none;
  font-size: 18px;
  color: #cd91ff;
  display: block;
}

.sidenav a:hover {
  color: #f407a3;
}

.main {
  margin-left: 180px; /* Same as the width of the sidenav */
  padding: 0px 10px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

textarea {
  resize: none;
  background-color: black;
  border: 1px solid lime;
  color: limegreen;
  font-size: 16px;
  text-align: center;
  padding: 10px;
}
