/*CAMERA PICKER*/

.camera-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background:black;
    z-index:9999;
}

.camera-video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.camera-controls{
    position:absolute;
    bottom:30px;
    width:100%;
    display:flex;
    justify-content:space-around;
}