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

body {
  height: 100vh;
  background: #0f172a; /* dark background */
  font-family: 'Baloo 2', cursive;
}

.container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box {
  background: white;
  padding: 40px 80px;
  border-radius: 20px;
  font-size: 64px;
  color: #111;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

