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

*{
    box-sizing: border-box;
}

:root{
    --primary-color:#22254b;
    --secondary-color: #373b69;
}

::-webkit-scrollbar{
    width:0;
    background:0
}

body{
    background-color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

header{
    padding: 1rem;
    display: flex;
    background-color: var(--secondary-color);
    align-items: center;
    justify-content: space-between;
}

a.logo {
    width: 157px;
    height: 35px;
    background-image: url(images/logo.html);
    background-size: cover;
}

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

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

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

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

.movie {
    width: 300px;
    margin: 1rem;
    border-radius: 3px;
    box-shadow: 0.2px 4px 5px rgba(0,0,0,0.1);
    background-color: var(--secondary-color);
    position:relative;
    overflow: hidden;
}

.movie img{
    width:100%;
}

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

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

.movie-title span{
    background-color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-weight: bold;
}

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

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

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

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

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

#genre{
    width: 80%;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
}

.genre{
    color:white;
    padding:10px 20px;
    background-color: var(--secondary-color);
    border-radius: 50px;
    margin:5px;
    display:inline-block;
    cursor: pointer;
}

.genre.highlight{
    background-color: green;
}

.clear.highlight{
    background-color: red;
}

.no-results{
    color:white;
}

.pagination{
    display:flex;
    margin:10px 30px;
    align-items: center;
    justify-content: center;
    color:white;
}

.page{
    padding:20px;
    cursor:pointer;
}

.page.disabled{
    cursor:not-allowed;
    color:grey;
}

.current{
    padding: 10px 20px;
    border-radius: 50%;
    border: 5px solid orange;
    font-size: 20px;
    font-weight: 600;
}

.watch-now{
    display: flex;
    background-color: red;
    color:white;
    font-size: 18px;
    font-weight: bold;
    border:0;
    border-radius: 50px;
    padding: 10px 20px;
    margin-top: 25px;
    justify-content: center;
    text-decoration: none;
}

.arrow{
    position: absolute;
    font-size: 40px;
}

.arrow.left-arrow{
    top:50%;
    left:5%;
    transform: translateY(-50%);
}

.arrow.right-arrow{
    top:50%;
    transform: translateY(-50%);
    right:5%;
}

.dots{
    margin-top: 30px;
}

.dots .dot {
    padding: 5px 15px;
    border-radius: 50%;
    border: 5px solid var(--secondary-color);
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 5px;
}

.dots .dot.active{
    border-color: orange;
}

@media(max-width:768px){
    header{
        justify-content: space-around;
    }
    a.logo{
        display: none!important;
    }
    #genre {
        width: 100%;
        display: flex;
        margin: 10px auto;
        flex-wrap: wrap;
        justify-content: center;
}