#video {
    width: 100%;
    max-width: 500px;
}
#canvas {
    display: none;
}
#photo {
    margin-top: 10px;
    max-width: 100%;
    height: auto;
}


.container-geral {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.container {
    background-color: #e0e6ea;
    max-width: 800px;
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.button {
    background-color: #a8c0c3;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.button:hover {
    background-color: #8aa6a8;
}

.button i {
    font-size: 18px;
}