@import url("https://fonts.googleapis.com/css2?family=Muli&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "Muli";
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #c5d5fa 0%, #c5d5fa 50%, #165393 50%, #165393 100%);
}
body nav {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  transition: width 0.6s linear;
  height: 40px;
  padding: 0.5rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5607843137);
}
body nav ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 0;
  transition: width 0.6s linear;
}
body nav ul li {
  padding: 0;
  transform: rotateY(0deg);
  opacity: 0;
  transition: transform 0.6s linear, opacity 0.6s linear;
  margin: 0 0.5rem;
  font-weight: 700;
  cursor: default;
}
body nav button {
  background-color: #fff;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 30px;
  height: 30px;
}
body nav button:focus {
  outline: 0;
}
body nav button .line {
  position: absolute;
  left: 50%;
  transform: translate(-50%) rotate(0);
  background-color: #165393;
  width: 15px;
  height: 2px;
  transition: transform 0.6s linear;
}
body nav button .line1 {
  top: 10px;
}
body nav button .line2 {
  bottom: 10px;
}
body nav.active {
  width: 250px;
}
body nav.active ul {
  width: 100%;
}
body nav.active ul li {
  opacity: 1;
  transform: rotateY(360deg);
}
body nav.active button .line1 {
  left: 0;
  transform: rotate(-765deg) translateY(5.5px);
}
body nav.active button .line2 {
  left: 0;
  transform: rotate(765deg) translateY(-5.5px);
}/*# sourceMappingURL=animate.css.map */