@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primary-color: #22254b;
  --secondary-color: #44497b;
}
* {
  box-sizing: border-box;
}

body {
  background-color: var(--primary-color);
  font-family: "Poppins", sans-serif;

  margin: 0;
}

header {
  padding: 1rem;
  display: flex;
  justify-content: flex-end;
  background-color:  var(--secondary-color);
}

.search {
  background-color: transparent;
  border: 2px solid  var(--primary-color);
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: #fff;
}

.search::placeholder {
  color: #7378c5;
}


.search:focus{
    outline: none;
    background-color: var(--primary-color);
}

main{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.movie{
    width: 300px;
    margin: 1rem;
    background-color: var(--secondary-color);
    box-shadow: 0 4px 5px rgba(0, 0, 0, .2);
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    transition: all 0.4s ease-in;
    animation: appear 0.5s


}

.movie img{
    width: 100%;
}

.movie-info{
    color: #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem 1rem;
    letter-spacing: .5px;

}

.movie-info span{ 

background-color: var(--primary-color);
padding: .25rem .5rem;
border-radius: 3px;
font-weight: bold;

}


.movie-info span.green{
    color:lightgreen ;
}

.movie-info span.orange{
    color:orange ;
}


.movie-info span.red{
    color:red ;
}


.movie-info h3{
    margin-top: 0;
}

.overview{
    background-color: #fff;
    padding: 2rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 100%;
    transform: translateY(101%);
    transition: transform 0.3s ease-in;
}

.movie:hover .overview{
    transform: translateY(0);
}

@keyframes appear{
    from { scale:0.1; opacity: 0.1;}
    to{scale: 1 ; opacity: 1;}
}