
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: black;
  color: #ffc6f9;
  font-family: 'Playfair Display', serif;
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.container {
  padding: 20px;
  width: 100%;
  max-width: 600px;
}

.phrase {
  margin-bottom: 20px;
  font-size: 1.2em;
  background: rgba(0, 0, 0, 0.7);
  padding: 16px;
  border-radius: 15px;
  box-shadow: 0 0 12px #ff69b4;
  word-wrap: break-word;
}

.choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.choices a {
  display: inline-block;
  padding: 14px 20px;
  background: #ff6fcb;
  color: black;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.choices a:hover {
  background: #ff9fe5;
  transform: scale(1.05);
}

/* Responsive typography */
@media screen and (max-width: 480px) {
  .phrase {
    font-size: 1em;
    padding: 14px;
  }

  .choices a {
    font-size: 0.95em;
    padding: 12px 18px;
  }
}
