/* 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: #0e0e0e;
  color: black;
  font-family: Verdana;
  align-content: center;
}

header {
  background-color: #3C4A5A;
  color: antiquewhite;
  padding: 2ch;
}
header a{
  color: #CBD5E1;
}


.intro{
  background-color: antiquewhite;
  color: #004400;
  padding: 50px;
  border-radius: 10px;
  margin: auto;
  border: #004400, dashed 3px;
  margin-top: 10px;
  
  
}
nav {
  background-color: #3C4A5A;
  color: antiquewhite;
  padding: 2ch;
  margin-bottom: 2ch;
  border-top: #0e0e0e 2px solid;
  width: fit-content;
}
nav a{
  color: #CBD5E1;
}
div {
  background-color: antiquewhite;
  color: #004400;
  padding: 50px;
  border-radius: 10px;
  margin: auto;
  border: #004400, dashed 3px;
  max-width: 65ch;
}
.spite-main{
  background-color: #0e0e0e;
  font-family: serif;
  line-height: 1.3em;
  font-size: 20px;
}
.spite-write{
  background-color: #1a1a1a;
  border: #f0c040 dotted 2px;
  color: #c8c8c8;
  max-width: 60ch;
}

.one{
  background-color: #0e0e0e;
}

.two {
  background-color: #1a1a1a;
}
.three {
  background-color: #f0c040;
}
.four {
  background-color: #c8c8c8;
}