/* 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." */
header {
background-color: black;  
margin-bottom: 5px;  
}

body {
  background-color: black;
  color: white;
  font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace; font-size: 1vw; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; } h3 { font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 15.4px; } p { font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace; font-size: 4px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 20px; } blockquote { font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace; font-size: 21px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 30px; } pre { font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 18.5714px;

}
h1 { font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace; font-size: 24px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; } h3 { font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 15.4px; } p { font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 20px; } blockquote { font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace; font-size: 21px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 30px; } pre { font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 18.5714px; }
/* Dotted border */
.dotted {
  border-top: 2px dotted white;
}

 

.mainbox {
  height: auto;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 10px;
  background-color: black;
  border: 3px groove;
  border-color: white;
  padding: 20px;
  position: relative;
  color: white;
}

.mainbox2 {
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  background-color: black;
  border: 5px groove;
  border-color: grey;
  padding: 20px;
  position: relative;
  color: white;
}

.leftbox {
  height: auto;
  width: 40%;
  float: left;
  margin-top: 10px;
  background-color: black;
  border: 0px groove;
  border-color: grey;
  padding: 20px;
  position: relative;
  color: white;
}

.rightbox {
  height: auto;
  width: 40%;
  float: right;
  margin-top: 10px;
  background-color: black;
  border: 0px groove;
  border-color: grey;
  padding: 30px;
  position: relative;
  color: white;
}

.player {
        width: 10%;
        height: 30px;
        top: 0px;
        left: 0px;
      }
      
a:link {
  color: white;
  text-decoration: underline;
}
a:visited {
  color: grey;
  text-decoration: none;
}
a:hover {
  color: lightgray;
  text-decoration: underline;
}
a:active {
  color: white;
  text-decoration: none;
}