
#background {
  width: 100%;
  height: 100vh;
  background-color: hotpink;
  color: white;
  font-family: Verdana;
  position: fixed;
  z-index: -1;
}

.spacer1 {
  height: 40px;
  width: 100%;
  }
  
.spacer2 {
  height: 15px;
  width: 100%;
  }

#maincontainer {
  width: 50%;
  height: 100vh;
  margin: auto;
  background-color: white;
  border-radius: 20px;
  border-style: solid;
  border-color: black;
  }

.sideimg {
  height: 150px;
  width: auto;
  border-style: outset;
  border-width: 5px;
  border-color: black;
  } 
  
#header {
    background-color: lightcoral;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  height: 60px;
  color: white;
  display: flex;
  align-items: center;
  }
  
#header > .navbutton {
  width: 20%;
  }
  
nav {
  z-index: 1;
  color: black;
  padding-left: 20px;
  }
  
.navbutton {
  background-color: gray;
  height: 50px;
  }
  
h1 {
  margin-left: 10px;
  font-family: "Lucida Handwriting", cursive;
  }
  
.bodytext {
  margin-left: 20px;
  }
  
.sideimg {
  margin-left: 10px;
  }