*{
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: black;
}

#form{
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Video_Search{
    text-align: center;
    font-size: 20px;
    color: black;
    border-radius: 13px 0px 0px 13px;
    width: 400px;
    height: 40px;
}

.Search_Icon{
    color:black;
    height:40px;
    width: 50px;
    font-size: 20px;
    background-color: white;
    border-radius: 0px 13px 13px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.videos{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.video_div{
    margin-top: 5%;
    text-align: center;
    cursor: pointer;
}

.title{
    color: white !important;
    font-size: 15px;
    margin-top: 02%;
    text-align: start;
}

.channel_name{
    color: white !important;
    margin-top: 03%;
    text-align: start;
}

.channel_image{
    border-radius: 15px;
    width: 300px;
    height: 175px;
}