h1:focus {
    outline: none;
}

.fondo {
    background: url(imagenes/fondo_analizador.png);
    background-position: center;
    background-size: cover;
    height: 100vh;
    padding: 10%;
}

.contenido {
    background-color: rgba(255,255,255,0.7);
    padding:25px;
    border-radius:20px;
    gap: 2rem;
}

.logo {    
    max-width: 400px;
    margin-top: -5%;
}

.icono {
    max-width: 75px;  
}

.titulo {
    font-size: 25px;
    font-weight: bold;
    color:#ffac00;     
}

.texto {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 25px;
    text-align:center;
    padding:0px 30px 20px;
}

.imi-loader {
    width: 100%;
    height: 6px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

    .imi-loader::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 40%;
        background: #ffac00;
        animation: slide 1.2s linear infinite;
    }

@keyframes slide {
    0% {
        left: -40%;
    }

    100% {
        left: 100%;
    }
}


p {
    line-height: 1.2 !important;
}
