nav {
  position: relative;
  width: 100%;
  height: 10vh;
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
}
nav .logo {
  font-weight: bold;
  place-content: center;
  display: grid;
}
nav ul {
  display: flex;
  align-items: center;
}
nav ul li {
  margin: 1rem;
  box-sizing: border-box;
  display: block;
  cursor: pointer;
}
nav ul li:last-of-type {
  border-radius: 20px;
  border: 1.5px solid white;
  padding: 0.7rem 2rem;
}

button, .button {
  font-size: 0.8rem;
  border-radius: 30px;
  background: linear-gradient(90deg, #efc652, #9cc873, #efc652, #9cc873);
  border: none;
  padding: 0.8rem 2rem;
  font-weight: bold;
  cursor: pointer;
  background-position: 0% 0%;
  background-size: 250% 250%;
  transition: all 400ms linear;
}
button:hover, .button:hover {
  transition: all 200ms linear;
  background-position: 100% 0%;
}

@keyframes spinAnimation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spinner {
  position: absolute;
  right: 3rem;
  width: 5rem;
  transform-origin: center;
  animation: spinAnimation 10s linear infinite;
}

a {
  color: white;
  text-decoration: none;
}

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

:root {
  font-size: 16px;
}

body {
  background-color: #232323;
  color: rgba(255, 255, 255, 0.822);
  font-family: sans-serif;
  padding: 0 5rem;
}
body h1 {
  font-size: 4rem;
  font-weight: 500;
}
body section#landing {
  height: 90vh;
  position: relative;
}
body section#landing #info {
  display: flex;
  height: 70%;
}
body section#landing #info .info-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body section#landing #info .img-landing {
  flex-grow: 1;
}
body section#landing #info #girl {
  height: 80%;
}
body section#landing #numbers {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  flex-grow: 4;
  display: flex;
  bottom: 3rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.014);
  width: 80%;
  height: 10rem;
  border-radius: 20px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.096);
}/*# sourceMappingURL=style.css.map */