body{
    background-color: antiquewhite;
    margin: 0px;
    padding: 0px;
}

.header{
width: 100%;
height: 50px;
background-color: aliceblue;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0px;
z-index: 1000; 
}

video {
    z-index: 1; /* Low value so that it stays below the navbar */
        background-color: white;

}

.header div{
font-size: 30px;
margin-left: 10px;
}

.logout{
    background-color: brown;
    width: 80px;
    height: 30px;
    margin-right: 10px;
    border-radius: 10px;
    font-size: 18px;

}

.python{
    height: 30px;
    width: 100%;
    border-top: 1px rgb(226, 219, 219) solid;
    border-bottom: 1px rgb(226, 219, 219) solid;
    background-color: white;
    padding-top: 20px;
    position: relative;
}

.python:hover{
background-color: aliceblue;
}

.full{
    margin-top: 50px;
    display: flex;
    justify-content: space-evenly;
    background-color: white;
    padding-top: 10px;
}

.screen{
    width: 710px;
    height: 100vh;
padding-left: 10px;
overflow-y: auto;
scrollbar-width: none;
}

.screen h2{
    height: 50px;
    width: 700px;
    background-color: white;
    padding: 20px 0 0 10px;
}

.des{
    background-color: white;
    border: 1px rgb(226, 219, 219) solid;
    border-radius: 10px;
    padding-left: 10px;

}


.content{
    width: 100%;
    height: 100vh;
    margin: 0px 10px 0 10px;
    padding: 0 5px 0 5px;
    border: 1px rgb(226, 219, 219) solid;
    background-color: white;
border-radius: 10px;
overflow-y: auto;
scrollbar-width: none;
} 

a{
    text-decoration: none;
    color: black;
}

/* Responsive */

@media(width < 1150px){

.content{
    width: 100%;
}

video{
    width: 600px;
    height: 350px;
}

.screen{
    width: 600px;
}

}

@media(width < 1050px){

    .content{
        width: 100%;
    }
    
    video{
        width: 500px;
        height: 300px;
    }
    
    .screen{
        width: 500px;
    }
    
}

@media(width < 900px){

    .content{
        width: 100%;
    }
    
    video{
        width: 400px;
        height: 270px;
    }
    
    .screen{
        width: 400px;
    }
 
}

@media(width < 700px){

.full{
    flex-direction: column;
    padding-right: 10px;
}

    .python{
        width: 100%;
    }
    
    .content{
  width: 100%;
    }

    video{
        position: fixed;
        top: 50px;
        width: 100%;
        height: 350px;
        margin: 0px;
    }
    
    .screen{
        width: 100%;
        height: 90vh;
        margin: 0px;
    }
 
    .des{
        margin-top: 300px;
        width: 100%;
        background-color: white;
    }
}

@media(width < 500px){
    
    .header div{
        font-size: 22px;
    }
    }
    