* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}
#body{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to top, #cd9cf2 0%, #f6f3ff 100%);
    background-repeat: repeat;
   
    flex-direction: column;
}
#main {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #1e2a38; */
   
    flex-direction: column;
}

#video_area {
    height: 700px;
    width: 1100px;
    /* margin-top: 20px; */
    padding: 20px;
    border-radius: 15px;
    background-image: linear-gradient(to right, #b8cbb8 0%, #b8cbb8 0%, #b465da 0%, #cf6cc9 33%, #ee609c 66%, #ee609c 100%);

    box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 8px, rgba(0, 0, 0, 0.4) 0px 8px 16px -4px, rgba(0, 0, 0, 0.3) 0px -2px 2px inset;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#video_data {
    height: 50%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#video_control {
    height: 100px;
    width: 100%;
    background-image: linear-gradient(to top, #c471f5 0%, #fa71cd 100%);

    border-radius: 15px;
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px;
}

#video_list {
    height: 55%;
    width: 100%;
    margin-top: 20px;
    border-radius: 15px;
    color: white;
    overflow-y: auto;
    padding: 10px;
}

#video_name {
    background-image: linear-gradient(to top, #cd9cf2 0%, #f6f3ff 100%);
    color: #000;

    padding: 10px;
    padding-left: 20px;
    border-radius: 15px;
    cursor: pointer;
    transition-duration: 0.5s;
    margin-bottom: 10px;
    font-weight: bolder;
    font-size: larger;
}

#video_name:hover {
    background-color: #506078;
}

#video {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
    
}

.btnn {
    height: 35px;
    background-image: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
    border: none;
    border-radius: 10px;
    width: 80px;
    font-weight: bolder;
    color: rgb(0, 0, 0);
    margin-right: 5px;
    transition-duration: 0.5s;
}

.btnn:hover {
  
    background-image: linear-gradient(to top, #cd9cf2 0%, #f6f3ff 100%);
}

.mt-4 {
    margin-top: 20px;
}

@media (max-width: 1200px) {
    #video_area {
        width: 90%;
    }
}

@media (max-width: 768px) {
    #video_area {
        padding: 10px;
    }
    #video_control {
        height: max-content;
        width: 100%;
       
    
        
        flex-direction: column;
    }
    .btnn {
        width: 70px;
        margin-bottom: 10px;
    }
    #video_area {
        height: 800px;
        width: 100vw;
      
        
       
    }
   
    
}

@media (max-width: 480px) {
    #video_area {
        padding: 5px;
    }
    .btnn {
        width: 100%;
        margin-bottom: 5px;
    }
    #video_name {
        font-size: small;
        padding: 3px;
    }
}