body {
    user-select: none;
}
p {
    margin: 0 calc(1vw*2);
}

#screen {
    position: fixed;
    inset: 0;
    width: calc(1vw*100);
    height: calc(1vh*100);
    background-color: rgb(20, 20, 20);
}
    #main {
        position: fixed;
        top: 0;
        width: calc(1vw*100);
        height: calc(1vh*90);
    }
        .main_screens {
            width: calc(1vw*100);
            height: calc(1vh*90);
        }
        #home_screen {
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: start;
            overflow-y: scroll;      /* gorizontal scroll ishlaydi */
            scrollbar-width: none;   /* Firefox uchun scroll yashirish */
            -ms-overflow-style: none; /* IE 10+ uchun scroll yashirish */
        }
            #news {
                display: flex;
                flex-direction: column;
                justify-content: start;
                align-items: stretch;
                width: calc(1vw*100);
                height: calc(1vh*16);
                border-bottom: solid 2px white;
            }
                #news_top {
                    display: flex;
                    justify-content: start;
                    align-items: center;
                    height: calc(1vh*4);
                    color: white;
                    font-weight: bold;
                }
                #news_main {
                    display: flex;
                    flex-direction: row;
                    justify-content: start;
                    align-items: start;
                    width: calc(1vw*100);
                    height: calc(1vh*12);
                    overflow-x: scroll;      /* gorizontal scroll ishlaydi */
                    scrollbar-width: none;   /* Firefox uchun scroll yashirish */
                    -ms-overflow-style: none; /* IE 10+ uchun scroll yashirish */
                }
                    .news_main_elements {
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        width: calc(1vh*11);
                        height: calc(1vh*10);
                        margin-top: calc(1vh);
                        margin-left: calc(1vw*3);
                    }
                        .news_main_elements img {
                            width: calc(1vh*8);
                            height: calc(1vh*8);
                            border-radius: 50%;
                            border: solid 1px red;
                            box-shadow: 0 0 4px 1px pink;
                        }
                        .news_main_elements p {
                            font-weight: 200;
                            font-size: 14px;
                            color: white
                        }
            #home_genres {
                display: flex;
                flex-direction: column;
                justify-content: start;
                align-items: start;
                width: calc(1vw*100);
                height: calc(1vh*74);
            }
                .home_genre_each {
                    display: flex;
                    flex-direction: column;
                    justify-content: start;
                    align-items: start;
                    width: calc(1vw*100);
                    height: calc(1vh*24);
                }
                    .home_genre_each_top {
                        display: flex;
                        flex-direction: row;
                        width: calc(1vw*100);
                        height: calc(1vh*4);
                        justify-content: space-between;
                        align-items: center;
                    }
                        .home_genre_each_top button {
                            background-color: transparent;
                            border: none;
                            color: red;
                        }
                        .home_genre_each_top p {
                            margin-left: calc(1vw*6);
                            color: white
                        }
                    .home_genre_each_bottom {
                        display: flex;
                        flex-direction: row;
                        width: calc(1vw*100);
                        height: calc(1vh*20);
                        justify-content: start;
                        align-items: start;
                        overflow-x: scroll;      /* gorizontal scroll ishlaydi */
                        scrollbar-width: none;   /* Firefox uchun scroll yashirish */
                        -ms-overflow-style: none; /* IE 10+ uchun scroll yashirish */
                    }
                        .movies_div {
                            position: relative;
                            width: calc(1vh*15);
                            height: calc(1vh*18);
                            margin-left: calc(1vh*2);
                        }
                            .movies_div img {
                                width: calc(1vh*15);
                                height: calc(1vh*18);
                                border-radius: calc(1vw*2);
                                object-fit: cover;
                            }
                            .movies_div p {
                                width: calc(1vh*13);
                                font-size: 12px;
                                margin: 0 calc(1vh);
                                position:absolute;
                                color: white;
                                bottom: 0;
                            }

            #search_main {
                display: flex;
                flex-direction: column;
                justify-content: start;
                align-items: center;
                position: fixed;
                inset: 0;
                width: calc(1vw*100);
                height: calc(1vh*90);
            }
                .search_top {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: calc(1vw*100);
                    height: calc(1vh*16);
                }
                    #search_inp {
                        width: calc(1vw*64);
                        height: calc(1vh*4);
                        padding: calc(1vw) calc(1vw*8);
                        font-size: medium;
                        border-radius: calc(1vw*2);
                        border: solid 2px red;
                        background-color: rgb(147, 145, 145);
                        color: rgb(40, 40, 40);
                    }
                    #search_inp::placeholder {
                        color: rgb(64, 64, 64);
                    }
                #search_list {
                    display: flex;
                    justify-content: center;
                    align-items: start;
                    width: calc(1vw*90);
                    height: calc(1vh*74);
                    color: white;
                }

    #menu {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        border-top: solid 2px black;
        border-radius: calc(1vw*3) calc(1vw*3) 0 0;
        box-shadow: 0 0 4px white;
        position: fixed;
        bottom: 0;
        width: calc(1vw*100);
        height: calc(1vh*10);
        background-color: black;
    }
        .menu_buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            width: calc(1vw*12);
            height: calc(1vh*7);
            border-radius: calc(1vw);
            background-color: gray;
        }