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

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #e88422;
}

.wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 6vw, 24px);
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(16px, 4vw, 24px);
  max-width: 100%;
}

.icon-placeholder {
  width: clamp(64px, 24vw, 96px);
  height: clamp(64px, 24vw, 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.icon-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: spin 15s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .icon-placeholder img {
    animation: none;
  }
}

.label {
  font-size: clamp(1.25rem, 6vw, 2.5rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
  max-width: 100%;
  overflow-wrap: break-word;
}
