body {
  padding-block: 30px;
  margin: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h2,
h3,
p {
  margin: 0;
  line-height: 100%;
}

input,
select,
button,
option {
  font-family: inherit;
}

#form {
  width: 50%;
  margin: auto;

  fieldset {
    padding: 0;
    border: none;
  }

  legend {
    text-align: center;
    font-size: 36px;
    line-height: 100%;
    padding-bottom: 25px;
  }

  input {
    width: calc(100% - 42px);
    font-size: 20px;
    border-radius: 15px;
    border: 1px solid #737373;
    padding: 10px 20px;
  }

  select {
    display: block;
    margin: 25px auto;
    font-size: 20px;
    border-radius: 15px;
    border: 1px solid #737373;
    padding: 10px 20px;
    text-align: center;
  }
}

#list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: #ffffff;
  padding-block: 30px;

  &:hover li:not(:hover) {
    opacity: 0.8;
  }

  .movie {
    display: flex;
    width: 300px;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(#e6e1e1, #757575);
    border-radius: 15px;
    cursor: pointer;
    padding: 20px;
    gap: 10px;
    border: 1px solid #757575;
    transition: 0.5s;

    &:hover {
      color: #000000;
    }

    .movieTitle {
      width: 100%;
      margin: 0 auto;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      text-align: center;
    }

    .movieYear {
      margin: 0 auto;
    }

    .moviePoster {
      width: 260px;
      height: 450px;
      margin: 0 auto;
      object-fit: cover;
      border-radius: 15px;
    }
  }
}

#moreBtn,
button {
  margin: 0 auto;
  background-color: orange;
  color: black;
  padding: 10px 20px;
  font-size: 1.2em;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 15px;
  border: 1px solid orange;

  &:hover {
    background-color: white;
  }

  &:not([hidden]) {
    display: block;
  }
}

#filmDetails {
  width: 60%;
  border: 1px solid #3d3d3d;
  border-radius: 15px;
  padding: 10px;
  background: linear-gradient(#e6e1e1, #757575);

  &::backdrop {
    background-color: #0008;
  }

  #filmDetailsContainer {
    display: flex;
    align-items: center;

    div {
      padding: 17px;
      align-self: self-start;
      flex-grow: 1;
    }

    .detailsTitle {
      font-size: 34px;
      padding-top: 10px;
      text-align: center;
    }

    .detailsName {
      font-size: 28px;
      padding-top: 15px;
    }

    .detailsDescription {
      font-size: 20px;
    }

    img {
      width: 45%;
      height: fit-content;
      border-radius: 15px;
    }

    #closeDetails {
      position: absolute;
      top: 9px;
      right: 9px;
      border: none;
      outline: none;
      padding: 0;
      cursor: pointer;
      background: unset;
    }
  }
}
