body {
  font-family: "Quicksand", sans-serif;
  margin: 0;
}

header {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 15px 60px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 796px) {
  header {
    justify-content: center;
  }
}
header nav ul {
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
header nav ul li {
  margin-left: 25px;
}
header nav ul li a {
  text-decoration: none;
  color: rgb(245, 243, 160);
  font-size: 25px;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
  padding: 10px;
  border-radius: 10px 0 10px 0;
}
header nav ul li a:hover {
  border-right: 2px solid rgb(245, 243, 160);
  border-bottom: 2px solid rgb(245, 243, 160);
}

footer {
  background: linear-gradient(70deg, rgb(24, 24, 24), rgb(25, 29, 29));
  padding: 35px;
}
footer ul {
  display: flex;
  justify-content: center;
  margin: 0;
}
footer ul li {
  width: 80px;
  height: 80px;
  margin: 0 50px;
}
footer ul li img {
  width: 100%;
  height: 100%;
  transition: transform 0.75s;
}
footer ul li img:hover {
  transform: rotate(360deg);
}

@media only screen and (max-width: 796px) {
  #logo {
    margin-bottom: 15px;
  }
}
#logo a {
  padding: 10px;
  font-family: "Oleo Script", sans-serif;
  color: rgb(245, 243, 160);
  font-size: 50px;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
#logo a:hover .initials {
  color: rgba(51, 47, 47, 0.8);
  text-shadow: 1px 1px 2px rgb(245, 243, 160);
  border-bottom: 2px solid rgb(245, 243, 160);
  border-top: 2px solid rgb(245, 243, 160);
}

#about {
  cursor: not-allowed;
}

/*# sourceMappingURL=main.css.map */
