*{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;

}


body{
    background: #F1F1F1;
    display: flex;
    min-height: 100vh;
    justify-content: center;
}


.content{
    width:400px;
    margin: 20px;
    background: #FFF;
    border: 1px solid #CCC;
    padding: 10px;
    box-shadow: 1px 1px 5px #CCC;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

video{
    width: 100%;
}


#foto{
    width: 100%;
}

#base64{
    width: 100%;
    height:100px;
}

.btn{
    width: 100%;
    font-size: 1.1rem;
    border: 1px solid #FFF;
    border-radius:2px;
    padding:5px;
    background: #091181;
    color:#FFF;
    cursor: pointer;
    box-shadow: 1px 1px 2px #CCC,
               -1px 1px 2px #CCC,
               1px -1px 2px #CCC,
               -1px -1px 2px #CCC;
}