
@media (max-width: 1200px) { 
    .title {
        font-size: 15px;
        color: white;
        text-align: center;
        width: 100%;
    }

    #searchbar {
        width: 300px;
        height: 40px;
        font-size: 30px;
        margin: 15px auto;
        display: block;
        background-color: #ffffff;
        border: 1px solid rgb(207, 207, 207);
        color:  rgb(0, 0, 0);
        border-radius: 15px;
    }

    .vod {
        position: relative;
        width: 150px;
        height: auto;
        border-radius: 15px;
        padding: 5px;
        cursor: pointer;
    }

}

@media (min-width: 1200px) { 
    #searchbar {
        width: 400px;
        height: 50px;
        font-size: 30px;
        margin: 15px auto;
        display: block;
        background-color: #ffffff;
        border: none;
        color:  rgb(0, 0, 0);
        border-radius: 15px;
    }

    .title {
        font-size: 45px;
        color: white;
        text-align: center;
        width: 100%;
    }

    .vod {
        position: relative;
        width: 350px;
        height: auto;
        border-radius: 15px;
        padding: 5px;
        cursor: pointer;
    }


}



.vod:hover{
    opacity: 0.75;
}

#vodok {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 1050px;
    border-radius: 15px;
    max-width: 100%;
}

#vodok table:nth-child(odd){
    background-color: rgba(45, 32, 22, 0.83);
}
#vodok table:nth-child(even){
    background-color: rgba(166, 98, 46, 0.83);
}


tr {
    cursor: pointer;
}

tr:hover {
    background-color: rgb(195, 120, 0);
}



