/* 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." */
  html {
    background-color: white;
  }
  /* header */
  .header {
    height: 50px;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    color: darkslategray;
  font-style: italic;
  font-weight: bold;
  border-bottom: 5px solid black;
  padding: 10px 15px 15px 5px;
  background: red url("bg-graphic.png") 10px 10px repeat-x fixed;
}

  /* sidenav */
  .sidenav {
  height: 100%;
  width: 200px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  left: 0;
  background-color: #111; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;
}
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
}
/* sidebar */
.sidebarright {
  color: blue;
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 300px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  right: 0;
  background-color: #111; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;
}
.sidebarright a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
}


/* main */
   body {
     padding: 50px;
     width: 800px;
     background: #efefef;
     margin: auto;
   }

ul {
  background: white;
  border: 5px solid purple;
  padding: 30px;
  border-radius: 20px;
}

li em {
  color: rebeccapurple;
}

.name {
  font-size: 150%;
  color: yellow;
  background-color: black;
  padding: 5px;
}

a:link {
  color: green;
  text-decoration: underline dotted;
}

a:visited {
  color: green;
}
a:hover {
  color: darkgreen;
  text-decoration: none;
}
.outer {
  border: 5px solid black;
  width: 235px;
}

.box {
  padding: 10px 15px 15px 5px;
  width: 215px;
  background: red url("bg-graphic.png") 10px 10px repeat-x fixed;
}

.alternate {
  width: 430px;
}