* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}
html {
  background: #000;
}
body {
  background: #000;
  color: #fff;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-family: "Roboto", sans-serif;
}

body div {
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  border-bottom: 3px solid;
  border-color: rgb(0, 255, 0);
}

body span {
  font-size: 2.25rem;
  text-align: center;
  font-weight: bold;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Keyframes */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Keyframes */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@media (max-width: 1024px) {
  body div {
    width: 14rem;
    height: 14rem;
  }
  body span {
    font-size: 1.25rem;
  }
}
