@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Sedan:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Platypi:ital,wght@0,300..800;1,300..800&family=Sedan:ital@0;1&display=swap");
header {
  display: flex;
  justify-content: center;
}
header img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 8rem;
}
header section {
  margin-left: 20px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main img {
  height: 300px;
  width: 400px;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
main .card {
  background-image: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
  width: 400px;
  height: 800px;
  text-align: center;
  border: 1px solid #ccc;
  margin-top: 20px;
  margin-bottom: 10px;
  border-radius: 1rem;
}
main .card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
main .informations {
  display: flex;
  justify-content: space-between;
}
main .informations p {
  width: 50%;
  height: 10px;
  padding: 0 1rem;
  font-size: small;
}
main .informations button {
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 1rem;
  padding: 10px;
  border-radius: 1rem;
  border: 2px solid #ccc;
  font-size: small;
}
main .informations button.p1 {
  font-family: Platypi;
  background-color: #e2d1c3;
  font-size: small;
}
main .informations button.p2 {
  background-color: #e2d1c3;
  font-family: Platypi;
  font-size: small;
}
main .movie-description h2 {
  padding: 10px;
  font-family: Sedan;
}
main .movie-description p {
  padding: 0 1rem;
  color: black;
  font-size: small;
}
main .link {
  width: 30px;
  height: 30px;
  padding: 0 30px;
}

.footer-bottom {
  padding-top: 1rem;
  text-align: center;
  color: black;
}

@media screen and (min-width: 480px) {
  main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: space-around;
  }
}