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

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0a0a0c;
  background-image: radial-gradient(circle at center, #181922 0%, #0a0a0c 70%);
  color: #f3f4f6;
  padding: 24px;
}

.container {
  width: 100%;
  max-width: 800px;
  text-align: center;
}

#joke {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}