/* 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: url("https://sweet-pea.neocities.org/graphics/backgrounds/LS-bg20.gif");
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: ms pgothic;
}


#logo-div {
  width: 45%;
  border-radius: 30px 60px 2px 2px;
  min-height: 50px;
  margin-bottom: 10px;
  margin-top: 50px;
  background-color: lightgray;
  border: 1px solid black;
}

#main-title {
  font-size: 1.5em;
  padding-left: 25px;
  top: 1em;
}

#nav-div {
  width: 100%;
  min-height: 50px;
  background-color: lightgray;
  text-align: center;
  line-height: 50px;
  margin-bottom: 5px;
}

#header-banner-div {
  width: 100%;
  min-height: 100px;
  background-color: lightgray;
  text-align: center;
  line-height: 100px;
  margin-bottom: 10px;
}

#main-div {
  width: 100%;
  background-color: lightgrey;
  min-height: 400px;
  margin-bottom: 10px;
  position: relative;
}

#sidebar-div {
  width: 20%;
  min-height: 300px;
  background-color: white;
  float: left;
  margin-top: 40px;
  margin-left: 30px;
  text-align: center;
  line-height: 300px;
}

#bodyarea-div {
  width: 75%;
  height: 400px;
  background-color: white;
  background-image: url("https://sweet-pea.neocities.org/graphics/backgrounds/FL-bg1.gif");
  float: right;
  text-align: center;
  line-height: 400px;
  border-radius: 10px 10px 10px 10px;
  border: 1px grey solid;
  position: absolute;
}

#innerbody-div {
 width: 50%;
 height: 250px;
 line-height: 250px;
 background-color: white;
 text-align: center;
 position: absolute;
}

#footer-div {
  width: 100%;
  min-height: 80px;
  background-color: #000;
  text-align: center;
  line-height: 80px;
}

#wrapper-div {
  width: 50%;
  height: 750px;
  background-color: orange;
  margin: auto;
}
        

    
        

    
        













