/* 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." */

/* MAIN PAGE LAYOUT --------------------------------------------------------------*/
body {
  background-color: #ffd4dc;
  color: black;
  font-family: Verdana;
  background-image: url(Images/sailormoonbg.png);
}

.mainpage {
  background-color: rgb(255 255 255 / 0.8);
  color: #ad63ba;
  margin: 150px 500px 150px 500px;
  padding: 0px;
  height: 700px;
  border: 3px solid #ad63ba;
  border-radius: 20px;
}

.maintext {
  display: inline-block;
  background-color: rgb(173 99 186 / 0.5);
  color: #ad63ba;
  margin: 0px 0px 0px 0px;
  padding: 0px;
  height: 700px;
  width: 819px;
  border: 0px solid #ad63ba;
  border-radius: 0px 12px 12px 0px;
  overflow: hidden;
}

.nav {
  display: inline-block;
  position: static;
  background-color: rgb(173 99 186 / 0.8);
  color: #ad63ba;
  margin: 0px 0px 0px 0px;
  padding: 0px;
  height: 700px;
  width: 200px;
  border: 0px solid #ad63ba;
  border-radius: 12px 0px 0px 12px;
  overflow: hidden;
}

/* NAV BAR -------------------------------------------------------------*/
.navbuttons > ul {
  list-style-type: none;
  margin: 10px 30px 10px 30px;
  padding: 0px;
  width: 200px;
  background-color: #f1f1f1;
}

.navbuttonsingle {
  display: block;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
}

.navbuttonsingle:hover {
  background-color: #555;
  color: white;
}

.navbuttonsingle:link {
  display: block;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
}