body {
    background-color:#0AF0E1;
    color:#330038;
}

h1 {
  font-family: "Faster One", system-ui;
}

h2 {
     font-family: "Henny Penny", system-ui; 
}

p {
      font-family: "Ribeye", serif-ui;
}

border {
    border: .3em solid white;   
}

right {
float: right;
}

* {
  border-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1, h2, p {
    margin-top: .5em;
    margin-bottom: .5em;
}

nav {
    width: 100%;
    margin: 0;
    background-color: #B00707;

  /* makes the menu "sticky" */
    position: fixed;
  
  /* makes sure the menu sticks to the very top of the page */
    top: 0;
}

.menu {
  /* takes away the bullet points from the list items */
    list-style-type: none;
  
    margin: 0 auto;
    padding: 0;
  
  /* adjust this to control the placement of the menuitems in the navbar */
    padding-left: 3em;
  }

.menuitem {
    float: left;
}

.menuitem a {
    display: inline-block;
    color: #FFFFFF;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1em;
}

.menuitem a:hover {
    background-color: #455d7a;
    font-size: 1em;
    color: #e3e3e3;
}

.logo {
  /* play with the width and margin-top numbers until your logo looks the way you want it to */
  width: 2em;
  margin-top: .3em;
  
  /* you probably only need border: none if you have a border set for images in general */
  border: none;
}

main {
/*   ADD PADDING INSIDE THE WHOLE 'main' ELEMENT  */
  padding: 1em;
  
/*   SHIFT THE 'main' ELEMENT DOWN, AWAY FROM THE MENU BAR */
  padding-top: 3em;
  
/*   CUSTOMIZE THESE UNTIL YOU LIKE THE WAY THEY LOOK  */
  width: 90%;
  margin: auto;
}



