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

html, body {
  height: 100%;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
}

@property --rotate {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes borderAnimate {
  from {
    --rotate: 0deg;
  }
  to {
    --rotate: 360deg;
  }
}
main {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .container {
  max-width: 300px;
  height: 400px;
  padding-inline: 1rem;
  padding-bottom: 1rem;
  color: whitesmoke;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(rgb(0, 0, 0)) padding-box, conic-gradient(from var(--rotate), rgb(0, 0, 0), rgb(255, 0, 247), black) border-box;
  border: 0px solid rgba(255, 255, 255, 0);
  box-shadow: 0 0 0px rgb(255, 0, 247);
  animation: borderAnimate 5s linear infinite;
  animation-play-state: paused;
  transition: all linear 0.3s;
  text-shadow: 0 0 0px rgb(255, 0, 247);
}
main .container:hover {
  animation-play-state: running;
  border-width: 5px;
  box-shadow: 0 0 50px rgb(255, 0, 247);
  color: rgb(255, 0, 247);
  text-shadow: 0 0 10px rgb(255, 0, 247);
}
main .container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */