/* styles.css */

/* Estilos para cobrir a tela inteira */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Evita barras de rolagem */
}
/* Estilos para o vídeo de fundo */
#video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000; /* Coloca o vídeo atrás de todos os outros elementos */
}
/* Estilos para o conteúdo */
.content {
    position: absolute;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1000; /* Garante que o conteúdo esteja na frente do vídeo */
}
.logo {
    position: absolute;
    top: 5%;
    left: 5%;
    transform: translate(-5%, -5%);
    max-width: 200px; /* ajuste conforme necessário */
    max-height: 200px; /* ajuste conforme necessário */
}
h1 {
    font-size: 3em;
}
p {
    font-size: 1.5em;
}
