/* 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." */
   
h1 {text-align: center;}
h2 {text-align: center;}
h3 {text-align: center;}

a:link {
  color: #00ccff;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #00ccff;
  background-color: transparent;
  text-decoration: underline;
}

hr.dashed {
  border-top: 3px dashed #9900cc;
}

body {
  background-image: url(/bgimage.jpg);
  color: black;
   font-family: 'Brush Script MT', cursive;
}
.header {
  border: 5px solid #9900cc;
  background-color: white;
  width: 1130px;
  height: 150px; 
  position: relative;
  left: 370px;
}

.main {
  border: 5px solid #9900cc;
  border-radius: 10px;
  background-color: white;
  width: 700px;
  height: 600px; 
  position: relative;
  left: 585px;
  top: 20px;
}

.sideleft {
  border: 5px dashed #00cc99;
  border-radius: 10px;
  background-color: #ccff99;
  width: 190px;
  height: 300px;
  position: relative;
  left: 370px;
  bottom: 590px;
}
.sideright {
  border: 5px dashed #00cc99;
  border-radius: 10px;
  background-color: #ccff99;
  width: 190px;
  height: 600px;
  position: relative;
  left: 1310px;
  bottom: 1200px;
}

.center {
  display: block; margin-left: auto; margin-right: auto; width: 50%;
  }
