/* Global */
body {
  background-color: #9c027D;
  color: white;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin: 0;
  padding: 20px;
}

/* Logo + content width */
.logo { width: 500px; margin: 0 auto 20px auto; display: block; }

/* Keep all core text to 500px */
p, .narrative, input, button, .progress { max-width: 500px; margin-left: auto; margin-right: auto; }

/* Headings */
h1 { margin: 10px 0 5px 0; }
h2 { margin: 5px 0 15px 0; }

/* Inputs */
input[type="text"], input[type="number"], input[type="date"] {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

/* Choices */
.choice { display: block; text-align: left; margin: 8px auto; max-width: 500px; }

/* Buttons */
button {
  width: 100%;
  padding: 12px 18px;
  border: none;
  border-radius: 12px;
  background: #fff;
  color: #000;
  font-weight: 700;
  cursor: pointer;
}
button:hover { background: #eaeaea; }

/* Progress */
.progress {
  width: 100%;
  height: 20px;
  background: rgba(255,255,255,0.25);
  border-radius: 12px;
  margin-top: 20px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: #fff;
  transition: width 0.4s ease;
}

/* Timer */
#timer {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 10px;
}
