@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;700&display=swap');

*{
    box-sizing: border-box;
}

:root{
    color:#fff;
}

body{
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

header{
    padding:1rem;
    display:flex;
    justify-content: space-between;
}

p{
    color: #000;
    font-size: 43px;
    font-weight: bold;
    margin-top: 0;
}

.search{
    background-color: transparent;
    border: 1px solid #000;
    padding:0.5rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    color:#000;
    font-family: 'Times New Roman', Times, serif;
}

.search::placeholder{
    color: #000;
}

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

.movie {
    width: 310px;
    margin: 1rem;
    border-radius: 3px;
    box-shadow: 0.2px 4px 5px #000;
    background-color: #C0C0C0;
    position:relative;
    overflow: hidden;
}

.movie img{
    width:100%;
}

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

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

.movie-info span{
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-weight: bold;
}

.movie-info span.black{
    color: black;
}
.movie-date {
    font-size: 22px;
    margin-left: 15px;
    font-family: Poppins;
    color: black;
}

@media (max-width: 400px){
    .search{
        border-radius: 8px;
        font-size:0.6rem;
    }

    .p{
        font-size:10px;
    }
}