* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: #ffffff;
}

html, body {
  background-color: #000000;
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}

.menu-icon {
  display: inline-block;
  cursor: pointer;
  height: 100%;
  background-color: #181818;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #346cf0;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: rotate(45deg) translate(-8px, -8px);
}

nav {
  background-color: #181818;
  display: flex;
  justify-content: space-between;
  height: 70px;
  width: 100%;
  padding: 1rem;
  border-radius: 0 0 10px 10px;
  top: 0;
}

nav p {
  font-size: 2rem;
}

.hide {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 0.5s linear;
  z-index: -1;
}

.show {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.5s linear;
  z-index: 1;
  position: fixed;
}

#menu-aside {
  display: flex;
  justify-content: flex-end;
  margin-top: 70px;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
}

#menu-aside div {
  background-color: #181818;
  height: 100%;
  width: 100%;
  border: solid 2px #000000;
}

#menu-list-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

li {
  list-style: none;
  margin: 10vh;
  font-size: 2rem;
}

footer {
  margin-top: 5vh;
  padding: 20px;
  background-color: #181818;
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

footer a {
  display: flex;
  font-size: .75rem;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
}

footer p {
  font-size: .75rem;
}

footer a img {
  width: 5vw;
}

@media screen and (min-width: 480px) {
  footer p {
    font-size: 1rem;
  }

  footer a img {
    width: 2vw;
  }
}
