@-webkit-keyframes animacion-rotacion-360 {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}@keyframes animacion-rotacion-360 {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
body {
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
  color: white;
}

img {
  width: 100%;
}

button {
  background: none;
  border: 0;
  display: inline-block;
  padding: 0;
}
button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.container {
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header--scroll {
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  padding-bottom: 1rem;
}

.titulo__icono {
  -webkit-animation-name: animacion-rotacion-360;
          animation-name: animacion-rotacion-360;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
/*# sourceMappingURL=main.css.map */