html::-webkit-scrollbar {
    background-color: #000000;
    width: 10px;
}

html::-webkit-scrollbar-thumb {
    background-color: #21008f;
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover {
    background-color: #3c00ff;
}

body {
    background-color: rgb(0, 0, 110);
}

main {
    transition: 1s;
    padding-top: 5vw;
    margin: 0 10px;
    overflow-x: hidden;
}

.navig {
    display: flex;
    position: fixed;
    width: 100%;
    height: 2vw;
    transition: top 0.5s;
    align-items: center;
    background-color: #292a383a;
    padding: 20px 30px;
    z-index: 1000;
}

.navig a {
    position: relative;
    left: 0;
    top: 0;
    margin-right: 10px;
}

.title-header {
    position: relative;
    text-transform: uppercase;
}

.neflix {
    color: red;
    font-size: 15px;
}

.mv {
    font-size: 10px;
    font-family: "Playwrite BE VLG", cursive;
}

.search {
    position: relative;
    right: 0;
    top: 0;
    padding: 10px 50px;
}

section.header-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
}

.search-inp {
    width: 300px;
    height: 30px;
    padding: 10px;
    box-sizing: border-box;
    color: azure;
    background-color: rgba(33, 27, 51, 0.443);
}

.search-btn {
    padding: 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0);
}
footer.footer-container{
    width: 100%;
    height: 100px;
    text-align: center;
    padding-top: 20px;
    box-sizing: border-box;
    background-color: #000000;
}
@media (max-width:1220px) {
    main{
        padding-top: 6vw;
    }
}
@media (max-width:888px) {
    main{
        padding-top: 7vw;
    }
}
@media (max-width:780px) {
    main{
        padding-top: 9vw;
    }
}

@media (max-width:650px) {
    .search-inp {
        width: 200px;
        height: 30px;
    }

    .search {
        position: relative;
        right: 0;
        top: 0;
        padding: 10px 10px;
    }
    main {
        padding-top: 10vw;
    }
}

@media (max-width:550px) {
    main {
        padding-top: 11vw;
    }
    .search-inp {
        width: 150px;
        height: 30px;
    }
    .neflix {
        color: red;
        font-size: 15px;
    }
    
    .mv {
        font-size: 5px;
        font-family: "Playwrite BE VLG", cursive;
    }
}
@media (max-width:400px) {
    main {
        padding-top: 13vw;
    }
    .neflix {
        color: red;
        font-size: 10px;
    }
    .search-inp {
        width: 130px;
        height: 30px;
    }
}