body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Palatino Linotype', 'Palatino', 'Georgia', serif;
  margin: 0;
  padding: 0;
}

/* Centered content with card-like container */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #1e1e1e;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* Stack spacing */
.content > * {
  margin-bottom: 1.2rem;
}
.content > *:last-child {
  margin-bottom: 0;
}

/* Image with soft edges and glow */
.img {
  width: 360px;
  height: 360px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(150, 100, 255, 0.3);
  display: block;
}

/* Quote text with serif flair, no italics */
#quote {
  font-size: 1.3rem;
  color: #ccccff;
  text-align: center;
  min-height: 70px;
  margin: 0 1rem;
  line-height: 1.5;
}

/* Purple mystical button */
.button {
  background-color: #7c3aed;
  color: white;
  border: none;
  padding: 0.7rem 1.6rem;
  font-size: 1.1rem;
  font-family: 'Palatino Linotype', 'Palatino', 'Georgia', serif;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.5);
  width: 100%;
  max-width: 220px;
  text-align: center;
}

.button:hover {
  background-color: #a78bfa;
  box-shadow: 0 6px 16px rgba(167, 139, 250, 0.6);
}

.button:active {
  background-color: #6d28d9;
  color: #ddd;
  box-shadow: 0 2px 8px rgba(109, 40, 217, 0.7) inset;
}

/* Attribution/footer */
body > div:last-of-type {
  font-size: 12px;
  color: #888;
  position: fixed;
  bottom: 5px;
  left: 10px;
}
body a {
  color: #aaaaff;
  text-decoration: none;
}
body a:hover {
  color: #ffffff;
}