.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: #09f;

  animation: spin 1s ease infinite;
}

.not-found-card {
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 70%);
  border: 1px solid #fb923c;
  box-shadow: 0 16px 42px rgba(249, 115, 22, 0.12);
}

.not-found-card #name-1,
.not-found-card #name-2,
.not-found-card #name-3 {
  color: #9a3412;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
