body, html { 
    height: 100%; 
    margin: 0; 
    background-color: #000; 
    font-family: Arial, sans-serif; 
}

/* Fondo inamovible y ajustado */
body {
    background-image: url('logo.png');
    background-repeat: no-repeat;
    background-position: center 60%; /* Baja un poco el logo para que no choque con el header */
    background-attachment: fixed;
    background-size: 50%; /* Ajusta este valor para el tamaño deseado */
}

.header {
    display: flex;
    align-items: center;
    justify-content: center; /* Mantiene todo centrado */
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    gap: 25px; /* Espacio entre logotipos y texto */
}

.header h1 {
    margin: 0;
    font-size: 1.8em; /* Título más grande */
    color: #ffffff;
    text-align: center;
}

.spsc-logo { 
    height: 70px; /* Logo más grande */
    width: auto;
}