/* 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-image: linear-gradient(#000033, black);
color: white;
font-family: Verdana;
}
header {
  background-color: dimgray;
  padding: 15px;
  text-align: center;
  font-size: 35%;
  color: white;
  width: 45%;
  display: block; margin-left: auto; margin-right: auto;
  border: 5px groove darkslategray;
}
.navlink {
 border: 5px outset black;
 font-family: "Abadi MT";
 color:midnightblue;
 background-color: slategray;
 padding: 2px;
}
.navlink:hover {
  border: 5px inset dimgray;
  color: #00004d;
  background-color: #596673;
}
nav {
  display: block; margin-left: auto; margin-right: auto;
  height: 30px;
  text-align:center;
}
a {
 text-decoration: none; 
}
.mainpanel1 {
 background-color: dimgray;
 border: 5px solid #004466;
 text-align:left;
 
 width: 590px;
 padding:6px;
}
.mainpanel2 {
 background-color: gray;
 color:#00264d;
 border: 5px ridge #004466;
 text-align:left;
 float:left;
 height:400px;
 padding:6px;
}