* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Lora', serif;
  background: linear-gradient(145deg, #f7ede2, #fbe6e8);
  color: #5c3d3d;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  padding: 2rem;
  margin: 1rem;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  background-color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  width: 100%;
  backdrop-filter: blur(5px);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #b26e63;
}

.quote-box {
  margin: 2rem 0;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
}

.links a {
  display: block;
  margin: 0.75rem 0;
  color: #7c4d4d;
  text-decoration: none;
  font-weight: bold;
}

.links a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #a67575;
}

/* Responsive styling */
@media (max-width: 600px) {
  .container {
    padding: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  .quote-box {
    font-size: 1.1rem;
  }

  footer {
    font-size: 0.8rem;
  }
}
