body {
  margin: 0;
  font-family: sans-serif;
  background-color: #bfdbfe;
  text-align: center;
  padding: 1rem;
}

button {
  cursor: pointer;
  border: none;
}

ul {
  padding: 0;
  list-style: none;
}

.bg-white {
  background: white;
}

.rounded-xl {
  border-radius: 1rem;
}

.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-xl {
  font-size: 1.25rem;
}

.font-bold {
  font-weight: bold;
}

.p-4 {
  padding: 1rem;
}

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gap-4 {
  gap: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-3xl {
  font-size: 1.75rem;
}
