/* Estilos para centrar el video y cambiar el fondo */
body {
    background-color: #547972; /* Fondo verde */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

video {
    width: 80%; /* Ajusta el tamaño del video */
    height: auto;
}

h1 {
    color: white;
    text-align: center;
}
