html,
body {
  padding: 0;
  margin: 0;
}

.episode-card {
  background-color: grey;
  height: 10rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem;
  transition: all 0.3s;
}

a {
  text-decoration: none;
  color: white;
}

h1 {
  text-transform: uppercase;
  text-align: center;
  font-size: 3.5rem;
  padding-top: 2rem;
}

h2 {
  color: white;
  font-size: 3rem;
  text-transform: uppercase;
}

.episode-card:hover {
  background-color: rgb(94, 94, 94);
  cursor: pointer;
}

.episode-card:first-child {
  margin-top: 10rem;
}

.story-image {
  width: 100vw;
  max-width: 768px;
  margin: auto;
}

.story-image > img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.bold {
  font-weight: bold;
}

a.disabled {
  pointer-events: none;
  cursor: default;
}

img {
  pointer-events: none;
}

.return-button {
  margin: 2rem 0;
  text-align: center;
}

.return-button button {
  background: #333;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.return-button button:hover {
  background: #555;
}
