*,
body {
  margin: 0;
  padding: 0;
  background-color: rgb(106, 0, 255);
}
.container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: cursive;
}
.container .search {
  width: 100%;
  height: 130px;
  background-color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.container .search input {
  width: 47%;
  height: 40px;
  background-color: #181818;
  border: none;
  padding: 8px;
  outline: none;
  border-radius: 5px;
  color: rgb(106, 0, 255);
  font-weight: bold;
}

.container .movies {
  width: 60%;
  background-color: rgb(106, 0, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.container .movies .box {
  width: 200px;
  height: 270px;
  border-radius: 4px;
  background-color: inherit;
  position: relative;
  margin: 10px;
}
.container .movies .box img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.container .movies .box p {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  background: none !important;
}
