@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");

body {
  font-family: "Inter", system-ui;
  margin: auto;
  max-width: 38rem;
  padding: 2rem;
  background: #2d2d2d;
  color: #fcfcfc;
}

.error {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.error_code {
  width: fit-content;
  outline: none;
  color: #fcfcfc;
  text-align: center;
  font-family: "Inter", system-ui;
  background-color: #1c1c1c;
  border: none;
  padding: 10px;
  border-radius: 6px;
}

.bxs-pencil {
  font-size: 50px;
  animation: rotateWand 1s infinite;
}

@keyframes rotateWand {
  0% {
    rotate: 0deg;
  }

  50% {
    rotate: -25deg;
  }

  100% {
    rotate: 0deg;
  }
}
