header { text-align: center; }

main.container {
  padding-top: 0;
}

footer {
  text-align: center;
  padding: 1em;
}

#title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

article {
  display: flex;
  flex-direction: column;
}

.cast-card {
  flex-direction: row;
  align-items: center;
}

.cast-card-img {
  object-fit: cover;
  height: 10vh;
  width: 10vh;
  border-radius: 100%;
  margin-right: 1em;
}

.cast-card-name {
  display: flex;
  flex-direction: column;
}

details div {
  margin-top: 1.5rem;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

@media only screen and (orientation: landscape) {
  #team {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
  }

  article {
    margin: 0;
    padding: 2em;
    flex-grow: 1;
  }
}