*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-track-color: azure;
  font-family: "Roboto", sans-serif;
}
::-webkit-scrollbar {
  width: 0.8rem;
}
::-webkit-scrollbar-thumb {
  background-color: #373d6c;
  border-radius: 0.1rem;
}

.header {
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #373d6c;
}
.header h1 {
  text-align: center;
  flex-basis: 90%;
  padding-left: 8vw;
  color: #f4f4f4;
  font-size: 1.5rem;
  font-size: 3rem;
}
.header a {
  display: inline-block;
  margin-left: auto;
  flex-basis: 10%;
  font-size: 1.5rem;
  text-decoration: none;
  color: #f4f4f4;
  transition: all 0.3s ease;
  text-decoration: underline;
  text-decoration-color: #dd2222;

  text-align: center;
}
.header a:hover {
  color: #dd2222;
  text-decoration-color: #f4f4f4;
}
.maincontent {
  padding: 3rem;
  background-color: #a0a6cf;
}
.maincontent h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 300;
}
.maincontent h2 a {
  color: transparent;
  background: linear-gradient(
    90deg,
    rgba(251, 132, 22, 1) 0%,
    rgba(219, 54, 24, 1) 42%,
    rgba(207, 37, 133, 1) 76%,
    rgba(219, 41, 219, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 500;
}
.maincontainer {
  margin-top: 1rem;
  text-align: center;
  padding: 1rem;
}
form {
  text-align: center;
}
input[type="text"] {
  width: 30vw;
  margin-left: 5vw;
  padding: 2rem;
  border-radius: 0.2rem;
  outline: none;
  border: none;
  background-color: #d3d5e9;
  font-size: 1.5rem;
}
button[type="submit"] {
  display: inline-block;
  color: gray;
  outline: none;
  border: none;
  border-radius: 0.2rem;
  transform: translateX(-100%);
  border-left: 2px solid #d73043;
  background-color: #d3d5e9;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 2rem;
  height: 100%;
  transition: color 0.3s ease;
}
button[type="submit"]:hover {
  color: rgb(90, 90, 90);
}
.maincontainer p {
  font-weight: lighter;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.movielist {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  min-height: 80vh;
  flex-direction: row;
  background-color: #22274e;
  padding: 2.5rem 5rem;
  /* padding-left: 10vw; */
}
.movielist h4 {
  font-size: 2rem;
  color: white;
  text-transform: capitalize;
  letter-spacing: 0.15rem;
  font-weight: lighter;
}
.listitem {
  flex-basis: 15vw;
  height: 53vh;
  color: #f3f3f3;
  margin: 0 2rem;
  margin-bottom: 2rem;
  cursor: pointer;
  padding: 0.1rem;
  border-radius: 0.8rem;
  background-color: #373d6c;
  box-shadow: 1px 1px 1px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  backface-visibility: hidden;
}
.listitem:hover {
  transform: scale(1.04);
}
.listitem img {
  border-radius: 0.8rem;
  object-fit: cover;
  object-position: center top;
  display: block;
  width: 100%;
  margin: 0 auto;
  height: 40vh;
}
.listitem h3 {
  margin-top: 2rem;
  padding: 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 400;
}
.listitem span {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  display: inline-block;
}
.movie {
  background-color: #373d6c;
  padding: 2rem;
}
.footer {
  position: sticky;
  top: 90vh;
  left: 0;
  border: 1px solid black;
  height: 10vh;
  border-top: 1px solid rgb(22, 21, 21);
  background-color: #fff;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}
.singlemovie {
  display: flex;
  padding: 0 25rem;
  margin: 0 auto;
  align-items: center;
}
.singlemovie img {
  display: block;
  flex-basis: 50%;
  height: 60vh;
  object-fit: contain;
}
.movieinfo {
  padding: 3rem;
  flex-basis: 50%;
  font-size: 1.5rem;
  color: #fff;
}
.movieinfo .row {
  border-bottom: 1px solid white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1.5rem 5rem;
  margin-bottom: 2rem;
}
.movieinfo h2 {
  font-size: 2rem;
  text-align: center;
}
.movieinfo span {
  float: right;
}
.movieinfo .plot {
  display: flex;
  align-items: center;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.movieinfo h3 {
  margin-right: 2rem;
}
.movieinfo h4 {
  font-size: 1.4rem;
}
.movieinfo p {
  margin-left: auto;
  width: 75%;
  text-align: center;
}
.movieinfo .plot p {
  line-height: 2.6rem;
  font-size: 1.5rem;
  width: 100%;
}
.footer a {
  width: 3vw;
  display: inline-block;
}
.footer img {
  display: inline-block;
  width: 100%;
}
.about {
  background-color: #a0a6cf;
  height: 100vh;
  padding: 5rem 25vw;
  color: #1e0e0e;
}
.about > * {
  padding: 2rem 1rem 0.5rem 0;
}
.about h1 {
  font-size: 3rem;
  text-align: center;
  padding: 2rem;
  border: none;
}
.about h2 {
  font-size: 2rem;
  border-bottom: 1px solid #f3f3f3;
}
.about p {
  font-size: 1.5rem;
}
.about h4 {
  font-size: 2rem;
  color: rgb(104, 10, 10);
}
.about .btn {
  display: inline-block;
  margin: 0 auto;
  border: 1px solid white;
  margin-top: 1rem;
  font-size: 1.8rem;
  border-radius: 0.8rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
  text-transform: capitalize;
  padding: 1.2rem 1.5rem;
  text-align: center;
  color: rgb(90, 19, 59);
  transform: translateY(0);
  transition: all 0.3s ease;
  background-color: #373d6c;
  color: white;
  text-decoration: none;
}
.about .btn:hover {
  transform: translateY(0.1rem);
}
.about .btn:active {
  transform: translateY(0.2rem);
}
@media only screen and (max-width: 1000px) {
  html {
    font-size: 50%;
  }
  .singlemovie {
    padding: 0 10rem;
    flex-basis: 90%;
    width: 90%;
  }
  .listitem {
    flex-basis: 25%;
  }
  button[type="submit"] {
    transform: translateX(0.5rem);
  }
}
@media only screen and (max-width: 500px) {
  .singlemovie {
    padding: 0 2rem;
    flex-basis: 90%;
    width: 90%;
  }
  .listitem {
    flex-basis: 50%;
  }
  .movielist {
    padding: 2rem;
  }
  .singlemovie {
    flex-direction: column;
  }
}

/*# sourceMappingURL=index.fc33897e.css.map */
