body {
  background-color: rgb(2, 2, 44);
}
.title {
  color: #ff0;
  font-family: "Akaya Kanadaka", cursive;
  text-align: center;
  font-size: 60px;
  margin-top: 15px;
  margin-bottom: 0;
}
.title a {
  color: #ff0;
  text-decoration: none;
}
.search-bar {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
#movieName {
  width: 30%;
  /* outline: rgb(2, 2, 44); */
  padding: 10px 30px 10px 24px;
  background-color: rgba(0, 0, 116, 0.614);
  border: none;
  color: rgb(255, 255, 255);
  border-radius: 4px;
}
.search-icon {
  position: absolute;
  right: 33.5%;
  top: 14%;
  background-color: unset;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 6px;
  border-radius: 50%;
  transition: 0.5s ease;
  cursor: pointer;
}
.search-icon:hover {
  background-color: rgb(2, 2, 159);
}
.d-none {
  background-color: yellow;
  display: none;
}
.body-container {
  text-align: center;
  /* background-color: white; */
  color: white;
  width: 800px;
  /* text-align: right; */
  display: flex;
  justify-content: space-between;
  margin: 10px auto;
}
.movie-desc {
  text-align: left;
}
.poster {
  position: relative;
}
.ratings {
  position: absolute;
  /* z-index: 1; */
  color: #ff0;
  bottom: 0;
  margin: 6px;
  background-color: rgba(2, 2, 44, 0.847);
  padding: 2px 6px;
  border-radius: 8px;
}

.loader-container {
  display: flex;
  justify-content: center;
  margin-top: 160px;
}
.loader {
  border: 2px solid #f3f3f337; /* Light grey */
  border-top: 2px solid #ff0; /* Blue */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
