
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Evita que el padding aumente el tamaño de los elementos */
}

body {
   
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden; /*  Evita que aparezcan barras de desplazamiento feas */
    width: 100%;
    height: 100vh; 
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente */
    
    background-color: #fbfcff; 
    
}

/* ESTILO EXTRA: Para que el video de fondo sea realmente un fondo */
.video_intro{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.2);
}


.contenedor-principal{ 
    color: white;
    border: 5px solid rgb(21, 18, 219);
    padding: 2em;
}

#volver {
    position: fixed;
    bottom: 30px;    
    right: 30px;     
    
   
    width: 100px;    
    height: 100px;   
    border-radius: 50%; 
    
    background-color: rgba(255, 255, 255, 0.2); 
    
    border: 2px solid rgba(255, 255, 255, 0.5);
    
    
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente */
    text-align: center;      /* me asegura que las palabras se alineen al medio */
    
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    padding: 10px; /* Un poco de espacio interno para que el texto no toque los bordes */

    /* 7. TU EFECTO DE RESPLANDOR (Mantenemos tu sombra) */
    box-shadow: 0px 0px 20px rgba(30, 11, 202, 0.8);
    
    /* 8. CURSOR */
    cursor: pointer;
}

  




