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

html, body {
  height: 100%;
  width: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  background-color: black;
  overflow-y: hidden;
}
body > h1 {
  color: white;
  text-align: center;
  padding-top: 10px;
  text-transform: capitalize;
}
body main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main .box {
  max-width: 300px;
  padding-inline: 10px;
  padding-bottom: 10px;
  color: whitesmoke;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 0 0px rgb(255, 3, 125);
  border-radius: 15px;
  background: linear-gradient(black) padding-box, conic-gradient(from var(--rotate), black, rgb(255, 3, 125), black) border-box;
  border: 0px solid rgba(255, 255, 255, 0);
  animation: gradientAnimation 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-play-state: paused;
  text-shadow: 0 0 0px rgb(255, 3, 125);
  transition: all 0.4s;
}
body main .box:hover {
  animation-play-state: running;
  border-width: 5px;
  box-shadow: 0 0 40px rgb(255, 3, 125);
  color: rgb(255, 3, 125);
  text-shadow: 0 0 10px rgb(255, 3, 125);
}
body main .box img {
  width: 100%;
}

@property --rotate {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes gradientAnimation {
  from {
    --rotate:0deg;
  }
  to {
    --rotate:360deg;
  }
}/*# sourceMappingURL=styles.css.map */