* {
    color: #E6A71E;
    font-family: "Oswald", system-ui;
    padding:  .3em;
    
}

body {
        background-color: #242424;

}
/* LINKS */
a {
    color: #E6A71E;
    padding:  .3em;
}

a:hover {
    
    background-color: #E6A71E;
    color: #242424;
    text-decoration: none;
    border-radius: 50%;
}

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

img {
    border:  .5em inset #E6A71E;
}

.logo {
    border: none;
}


nav {
    width: 100%;
    margin: 0;
    background-color: #E6A71E;
    margin-left: -2em;

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

/* NICE MENU*/
.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: #242424;
    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;
}

/* MENU */
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  */
  /*background-color: #e3e3e3;*/
  width: 90%;
  margin: auto;
}


/* BASIC DOCUMENT SETUP */

