/* Entire site */
body {
  background-color: gray;
  font-family: "Rubik", cursive;
  font-weight: 400;
  font-style: normal;
}

/* Centering content */
.center {
  text-align: center;
}

/* Episode Card hover */
.ep-section:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Container for all episodes */
.ep-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  margin-bottom: 100px;
}

/* Episode card */
.ep-section {
  margin: 10px;
  border: solid 1px white;
  border-radius: 10px;
  text-align: center;
  background-color: coral;
}

/* Episode card image and p (summary) */
.ep-section img,
.ep-section p {
  padding: 10px;
}

/* Episode card title */
.ep-title {
  border: solid 1px black;
  border-radius: 10px;
  padding: 10px;
  margin-top: 0;
  background-color: lightblue;
}

/* Episode card p (summary) */
.ep-section p {
  text-align: left;
}

/* Container for all shows */
.show-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px;
  margin-bottom: 100px;
}

/* Show content */
.show-content {
  padding: 0 20px;
  color: white;
}

.show-title {
  color: white;
  padding: 0 20px;
}

/* Show card */
.show-section {
  margin: 10px;
  border: solid 1px white;
  border-radius: 10px;
  background-color: rebeccapurple;
}

/* Show meta info */
.show-meta {
  padding: 0 20px;
  border: solid 1px white;
  border-radius: 10px;
  background-color: rgb(64, 0, 64);
  margin-bottom: 20px;
}

/* Show card hover */
.show-section:hover {
  transform: scale(1.025);
  cursor: pointer;
}

/* Search bar */
#search {
  padding: 10px;
  width: 250px;
  border: solid 1px black;
  border-radius: 20px;
}

/* Selects */
.show-select,
.ep-select {
  border: solid 1px black;
  border-radius: 20px;
  font-size: 14px;
}

/* Back to shows button */
.back-to-shows {
  padding: 10px;
  border: solid 1px black;
  border-radius: 20px;
  background-color: rebeccapurple;
  color: white;
  cursor: pointer;
}

/* Back to shows button hover */
.back-to-shows:hover {
  transform: scale(1.03);
}

/* Search, Selects, Button Background */
.cta {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 20px;
  display: inline-flex;
  gap: 15px;
  align-items: center;
  margin: 20px auto;
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.5),
    0 6px 20px 0 rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
  background-color: orange;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
}
