* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Georgia', serif;
  color: #f0e9dc;
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
}

.overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* dim overlay */
  padding: 0 2rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-shadow: 0 0 10px #000;
}

.quote {
  font-size: 1.5rem;
  line-height: 1.8;
  max-width: 700px;
  text-shadow: 0 0 8px #000;
}

.attrib {
  color: #ffb547;
  font-style: italic;
  font-size: 1.2rem;
  text-shadow: 0 0 4px #ffb547, 0 0 8px #ff9e2b;
}

.about-box {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 300px;
  color: #f0e9dc;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.about-box h2 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  border-bottom: 1px solid #777;
  padding-bottom: 0.25rem;
  color: #ffddb4;
}

