
@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');

body {
  background: url('background_cross.png') no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
  background-color: #fffaf0;
  font-family: 'Georgia', serif;
  color: #333;
  margin: 0;
  padding: 2em 5vw;
}

header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

h1 {
  margin-bottom: 0.25em;
}

h1, h2, p {
  text-align: center;
}

.button-grid {
  max-width: 1200px;
  margin: 2em auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1em;
  justify-items: center;
}

.episode-button,
.merch-button {
  display: block;
  text-align: center;
  margin: 1.5em auto;
  font-weight: bold;
  text-decoration: none;
  color: #5a4332;
  background-color: rgba(255, 255, 255, 0.85);
  border: 2px solid #c2b280;
  padding: 0.75em 1.5em;
  width: fit-content;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.episode-button:hover,
.merch-button:hover {
  color: #a67c52;
  border-color: #a67c52;
  background-color: rgba(255, 255, 240, 0.95);
}

.highlight {
  font-weight: bold;
  color: #7c4d00;
  font-family: 'Handlee', cursive;
  font-size: 1.2em;
}
.theo-message {
  text-align: center;
  margin: 2em 0;
  font-family: 'Handlee', cursive;
  font-size: 1.5em;
  color: #7c4d00;
}
 