@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');

*{box-sizing: border-box;
}
:root{
    --primary-color: #22254b;
    --secondary-color: #373b69;
}
body{
    background-color: var(--secondary-color);
    font-family : 'Poppins', sans-serif ;
    margin: 0;
}
header{
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
}
.search{
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    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;
}
.movie img{
    width: 100%;
}
.movie{
    width: 300px;
    margin: 1rem;
    background-color: var(--primary-color);
    box-shadow: 0 4px 5px rgba(0,0,0,0.2), 0 8px 10px rgba(84, 57, 202, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}
.movie-info{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem 1rem;
    letter-spacing: 0.5px;    
}

.movie-info h3{
    margin-top: 0;
} 
.movie-info span{
    background-color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-weight: bold  ;
}
.movie-info span.green{
    color: lightgreen;
}
.movie-info span.red{
    color: red;
}
.movie-info span.orange{
    color: orange;
}
.overview{
    background-color: #fff;
    padding: 2rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 100%;
    transform: translateY(101%);
    transition: 0.4s ease-in-out;
}
.movie:hover .overview{
    transform: translateY(0);
}

.cp-text{ 
     color: rgba(0,0,0,.7);
     text-shadow: 0 1px rgba(255, 255, 255, 0.1);
     background:var(--secondary-color); 
     text-align: center;
     padding:5%;
     font-size: 1.2rem;
    }
