/* 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." */

body {
  background-color: #586a33;
  color: #b6ae60;
  font-family: "Courier New", monospace;
  padding:10%;
  padding-top: 5%;
  padding-left: 15%;
  margin-left: 5px;
  margin-top: 100px;
  font-weight: 300;
}

h1 {
  background-color: #107847;
  color: #fff5e6;
  padding: 5px;
}

h2 {
  background-color: #79bd9d;
  color: #fff5e6;
  padding: 5px;
}

h3 {
  background-color: #658f7b;
  color: #fff5e6;
  padding: 5px;
}

.sidebar {
  height: 100px;
  width: 150px;
  position: fixed;
  top: 0;
  left: 10px;
  padding-top: 20px;
  padding-right: 10px;
  background-color: #586a33;
}
.sidebar div {
  padding: 8px;
  font-size: 14px;
  display: inline-block;
}

@media screen and (max-width: 1023px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: fixed;
    margin: 0px;
    padding: 0px; 
  }
  .sidebar a {float: left;}
  .content {margin-left: 0px;}
}

@media screen and (max-width: 1023px) {
  .animation-flicker {
     visibility: hidden;
}}


/* unvisited link */
a:link {
  color: #FFFB46;
}

/* visited link */
a:visited {
  color: #FFFB46;
}

/* mouse over link */
a:hover {
  color: #F7B2BD;
}

/* selected link */
a:active {
  color: blue;
}


