/* 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: white;
  font-family: "Noto Sans", Verdana;
  margin-top: 0px;
}

h1 {
  text-align: center;
  text-shadow: 3px 3px black;
}

h2 {
  text-shadow: 2px 2px black;
}

#central {
  background-image: url("images/bg.png");
  width: 70%;
  margin-left: 15%;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 30px;
  border: 2px solid darkgray;
}

#title {
  font-family: "Zen Dots", Verdana;
  font-size: 20px;
  background-color: steelblue;
  border: 1px solid white;
  width: 60%;
  margin-left: 20%;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;  
}

#main {
  background-color: steelblue;
  border: 1px solid white;
  width: 60%;
  margin-left: 20%;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

#main img {
  width: 80%;
  margin-left: 10%;
  border: 1px solid white;
}

#menu {
  background-color: steelblue;
  border: 1px solid white;
  width: 60%;
  margin-left: 20%;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

#menulist ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#menulist ul li {
  float: left;
}

#menulist ul li a {
  display: block;
  text-align: center;
  padding: 15px 15px;
  text-decoration: none;
}

#menulist ul li a:hover {
  background-color: darkslateblue; 
}

#footer {
  background-color: steelblue;
  border: 1px solid white;
  width: 60%;
  margin-left: 20%;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

#footer p {
  text-align: center;
}

a {
  color: lightgray;
}