:root {
  --content: #151518;
}

body {
  font-family:ms gothic;
  margin: 0;
  background-color: #151518;
  color: #d9d9ec;
  line-height:110%;
}
a {
  text-transform:upercase;
  text-decoration:none;
}

* {
  box-sizing: border-box;
}

/* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */

/* the "container" is what wraps your entire website */
/* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
#container {
  max-width: 1000px;
  margin: 0 auto;
}

#container a {
  color: #f8ff00;
  font-weight: bold;
}

#header {
  width: 100%;
  background-color: #151518;
  height: 158px;
  border: 5px outset #151518;
  margin-bottom:5px;
  text-align:center;
}

/* navigation section!! */
#navbar {
  height: 50px;
  background-color:;
  width: 100%;
  border: 5px outset #151518;
  margin-bottom:5px;
}

#navbar ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}

#navbar li {
  padding-top: 10px;
}

/* navigation links*/
#navbar li a {
  color: skyblue;
  font-weight: 800;
  text-decoration: none;
    text-transform: uppercase
}

/* navigation link when a link is hovered over */
#navbar li a:hover {
  color: #a49cba;
  text-transform: uppercase;
}

#flex {
  display: flex;
}

/* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
aside {
  background-color:;
  width: 200px;
  padding: 20px;
  font-size: smaller;
  /* this makes the sidebar text slightly smaller */
}

/* this is the color of the main content area,
    between the sidebars! */
main {
  background-color:;
  flex: 1;
  padding: 20px;
  order: 2;
  border: 5px outset #151518;
  margin-left:5px;
  margin-right:5px;

}

#leftSidebar {
  order: 1;
  border: 5px outset #151518;
  margin-right:3px;
}

#rightSidebar {
  order: 3;
  border: 5px outset #151518;
  margin-left:3px;

}

footer {
  background-color:;
  width: 100%;
  height: 40px;
  padding: 10px;
  text-align: center;
  border: 5px outset #151518;
  margin-top:5px;
  margin-bottom:10px;
}

h1,
h2,
h3 {
  color: white;
  text-transform:uppercase;
}

h1 {
  font-size: 25px;
}

strong {
  color: white;
}

.box {
  background-color:;
  border: 5px outset #151518;
  padding: 15px;
}


#topBar {
  width: 100%;
  height: 30px;
  padding: 10px;
  font-size: smaller;
  background-color: #13092d;
}

span img:hover {
  animation: shake 0.5s;
  animation-iteration-count: 1;
  cursor: pointer;
}
@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

/* BELOW THIS POINT IS MEDIA QUERY */

/* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

@media only screen and (max-width: 900px) {
  #flex {
    flex-wrap: wrap;
  }

  aside {
    width: 100%;
  }

  main {
    order: 1;
  }

  #leftSidebar {
    order: 2;
  }

  #rightSidebar {
    order: 3;
  }

  #navbar ul {
    flex-wrap: wrap;
  }
}
