body {
  font-family: 'Open Sans';
  background-color: #303558;
}
aside {
  position: fixed;
  right: 0;
  height: 100%;
  width: 20%;
  background-color: #303558;
}
.center-box {
    margin: 0 auto;
    overflow: hidden;
    clear: both;
    text-align: center;
}
#hamburger {
  display: none;
}
nav {
  margin: 60px 0;
  display: block !important;
  }
}
nav ul {
    padding: 30px 0;
}
nav ul li {
  position: relative;
}
 nav ul li:before {
  position: absolute;
  height: 5px;
  width: 5px;
  content: "";
  background: #5665d0;
  border-radius: 50%;
  top: 15px;
  right: 10px;

}
nav ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    letter-spacing: 3px;
    line-height: 2;
    padding: 10px;
}
nav ul li a:hover {
  background-color: #5665d0;
  box-shadow:
                1px 1px #3d4896,
                2px 2px #3d4896,
                3px 3px #3d4896;
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
}
#content {
  margin-right: 20%;
}
h1 {
  font-family: 'Alfa Slab One', cursive;
  font-size: 58px;
  text-align: center;
  color: white;
  padding: 40px;
}
h2 {
  font-family: 'Alfa Slab One', cursive;
  font-size: 24px;
  color: white;
  padding: 20px;
}
p a {
  text-decoration: underline;
  color: white;
}
p {
  font-family: 'Open Sans';
  font-size: 20px;
  color: white;
  padding: 20px;
  line-height: 1.4;
}
.element {
  position: relative;
}
img {
  width: 100%;
  height: auto;
  display: block;
}

.element-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: rgba(65, 105, 77, 0.3);
  color: rgba(65, 105, 77, 0.3);}
footer {
  color: white;
  text-align: center;
}
footer a {
  text-decoration: underline;
  color: white;
}
@media only screen and (max-width: 960px) {
  aside {
      position: relative;
      width: 100%;
  }
  section {
    display: block;
  }
  #hamburger {
    display: block;
    width: 40px;
    height: 40px;
  }
  #hamburger:before {
    content: "MENU";
    color: #fff;
    position: absolute;
    padding-bottom: 15px;
    margin: 0 auto;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 24px;
  }
  nav ul {
    display: none;
  }
  #content {
    margin-right: 0px;
  }
}
@media only screen and (max-width: 606px) {
  h1 {
    font-size: 38px;
    padding: 20px;
  }
  h2 {
    font-size: 18px;
    padding: 10px;
  }
  p {
    font-size: 16px;
    padding: 10px;
    line-height: 1.4;
  }
  .element-text {
    top: 50%;
    left: 25%;
    transform: translate(-25%, -50%);
  }

}
