/* Welcome page */
.welcome-img-container {
  width: 100%;
  height: 42vh;
  overflow: hidden;
  background-color: var(--dark-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2vh;
}

.welcome-img {
  max-width: 1200px;
  padding: 0;
  height: 100%;
}

.banner-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8vh auto 0;
  padding-bottom: 4vh;
}

.welcome-banner {
  width: 60%;
  filter: grayscale(1);
}

/* Show-view Page */
.show-list-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 60vh;
  margin-top: 2vh;
  overflow: hidden;
  background-color: var(--dark-bg);
  border: 2px solid var(--light-bg);
  transition: 0.5s;
}

.show-list-page:hover {
  border: 2px solid var(--white);
  cursor: pointer;
  box-shadow: 0px 0px 120px var(--light-bg);
  background-color: var(--light-bg);
  transform: scale(1.02);
  transition: 0.3s;
}

.show-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  min-width: 440px;
  max-width: 440px;
  margin-bottom: auto;
  height: fit-content;
  overflow: hidden;
}

.show-name {
  font-size: 1.3rem;
  text-align: center;
  padding: 1.6vh;
  margin-bottom: auto;
}

.image-container {
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  height: 450px;
  width: 80%;
  padding: 0px 20px 10px 20px;
  margin: auto;
  margin-top: 20px;
}

.show-info img {
  width: 100%;
}

/* showInfo View */
.show-more-information {
  width: 440px;
  margin-bottom: auto;
  cursor: pointer;
}

.show-more-information p {
  text-align: left;
  max-width: 80%;
  margin: auto;
  padding-bottom: 20px;
  font-size: 0.9rem;
}

#description {
  height: 300px;
  overflow: auto;
  margin-bottom: 10px;
}

#premiered {
  margin-bottom: 30px;
}

#external-link {
  color: var(--bright-green);
  font-size: 1.2rem;
  text-decoration: none;
}

a#external-link:hover,
a#external-link:focus {
  text-decoration: underline;
  color: var(--white);
}

/* Language section */
.user-selected {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 20px;
}

.show-languages,
.show-genres {
  color: var(--white);
  background-color: var(--light-bg);
  border: 1px solid var(--white);
}
.show-languages:hover,
.show-genres:hover {
  color: var(--white);
  background-color: var(--bright-green);
  border: 1px solid var(--white);
}

#language,
#genre {
  display: flex;
  flex-direction: column;
  width: 150px;
}

#language {
  margin-right: 20px;
}

.label {
  padding-bottom: 5px;
}
