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

html, body {
  width: 100%;
  height: 100%;
}

@property --rotate {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes moveAnimation {
  from {
    --rotate: 0deg;
  }
  to {
    --rotate: 360deg;
  }
}
main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
main #card {
  max-width: 360px;
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: linear-gradient(black) padding-box, conic-gradient(from var(--rotate), black, #f5cd02, black) border-box;
  border: 0px solid transparent;
  border-radius: 15px;
  animation: moveAnimation 2s linear infinite;
  box-shadow: 0 0 0px #888647;
  text-shadow: 0 0 0px #FFFE8E;
  animation-play-state: paused;
  transition: all 0.2s linear;
  color: aliceblue;
}
main #card:hover {
  animation-play-state: running;
  border-width: 7px;
  color: #f3f188;
  box-shadow: 0 0 50px #888647;
  text-shadow: 0 0 10px #FFFE8E;
}
main #card img {
  width: 100%;
  border-radius: 10px;
}
main #card h1 {
  font-size: 24px;
}
main #card p {
  font-size: 14px;
}/*# sourceMappingURL=style.css.map */