body {
  font-family: Arial, sans-serif;
  background-color: #f4f403;
  color: #ffaa33;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-size: 20rem;
}

.do-not-press {
  position: fixed;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: red;
  color: white;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  animation: spin 1.5s linear infinite;
}

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

.particle {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  animation: explode 0.8s ease-out forwards;
}

@keyframes explode {
  from {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  to {
    transform: translate(var(--dx), var(--dy)) scale(0);
    opacity: 0;
  }
}
