*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
:root{
    --pry-red:#000000;
    --sec-red:#250404;
}
body{
background-color: var(--pry-red);
font-family: 'Inter', sans-serif;
margin: 0;
}
header{
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    background: var(--sec-red);
}
.search{
    background: transparent;
    border: 1px solid var(--pry-red);
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    color: #fff;
}
.search::placeholder{
    color: #831010;
}
.search:focus{
    outline: none;
    background-color: var(--pry-red);
}
main{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.movie{
    width: 300px;
    margin: 1rem;
    background-color: var(--sec-red);
    box-shadow: 0 4px 5px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}
.movie-img{
    width: 100%;
}
.movie-info{
    color: #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    letter-spacing: 0.5px;
}
.movie-info h3{
margin-top: 0;
}
.movie-info span{
    background: var(--pry-red);
    padding: 0.25rem 0.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;
}
.overview{
    background-color:var(--sec-red);
    color: #fff;
    padding: 2rem;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
   
    transform: translateY(101%);
    overflow-y: auto;
    transition: transform 1s ease-in-out;
}
.movie:hover .overview{
    transform: translateY(0);
    
}
#pre-loader{
    background:#000 url("https://media3.giphy.com/media/3o7bu3XilJ5BOiSGic/giphy.gif") no-repeat center center;
    background-size: 15%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}
.loader{
    display: none;
}
.loader.show{
    display: block;
}