<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}

/****ANIMACIONES****/
@keyframes fadeIn {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes fadeBackground {
    0% {opacity: 1;}
    50% {opacity: 1;}
    100% {opacity: 0.2;}
}

body::after {
    animation: fadeBackground 4s ease-in-out;
}

body &gt; * {
    animation: fadeIn 2s ease-in-out 2s forwards; 
    visibility: hidden; 
    animation-fill-mode: forwards;
}

div {
    animation: fadeIn 2s ease-in-out 2s forwards; 
    animation-fill-mode: forwards;
}
/* Estilos para el fondo animado */
body::after {
    content: "";
    background-image: url('https://imposurimgs.s3.us-east-2.amazonaws.com/Logosuniversales/ANIMADO+GIF.gif');
    background-repeat: no-repeat;
    background-size: 20%;
    background-position: center;
    background-attachment: absolute;
    opacity: 0.2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -2;
}

body.noAfter::after {
    opacity: 0;
    transition: opacity 1s ease-out;
}



/* Estilos para el footer */
footer {
    background-color: #22b8f0;
    color: #fff;
    text-align: center;
    padding: 8px;
    position: static;
    width: 100%;
    flex-shrink: 0;
}


/*Estilo para botones*/
#inicio_boton{
    background-color: #9fd11f;
    color: white;
    border: none;
    text-decoration: none;
    display: inline-block;
    font-size: 21px;
    margin: 1em;
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    width: 9em;
    height: 3em;
}

/* Estilos generales */
.container-fluid {
    flex-grow: 1;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.image-container img {
    width: 60em;
    height: auto;
}

/*Estilo para los textos*/
.mini_texto{
    font-size: 100%;
    font-weight: bold;
}

.sub_titulos{
    color: #9fd11f;
}

h1{
    color: #29A4DA;
}

#pa_arriba{
    padding-top: 1em;
}

#inicio_boton:hover{
    background-color: #29A4DA;
    color: #f8f9fa;
}


#icono_impo_valores{
    width: 5em;
    height: auto;
}

/*Estilo para el cambio de resolucion*/
@media (min-width: 768px) {
    #fondogrande{
        background-image: url('../Logosuniversales/Logo\ corazon.svg');
        content: "";
        background-repeat: no-repeat;
        background-size: 37em;
        background-position: center;
        background-attachment: absolute;
        left: 10%;
        opacity: 0.2;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -2;
        animation: fadeBackground 4s ease-in-out;
    }
}


/*****DISEÃ‘O PAGINA PEQUEÃ‘A*****/
@media (max-width: px) {
    #fondo{
        background-image: url('../Logosuniversales/Imposur\ Logo.svg');
        content: "";
        background-repeat: no-repeat;
        background-size: 37em;
        background-position: center;
        background-attachment: fixed;
        opacity: 0.2;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -2;
    }
}

#icono_pequeÃ±o_de_valores{
    width: 3em;
    height: auto;
    margin: auto;
    display: block;
}

/*Estilo para los textos*/
.h2{
    color: #9fd11f;
}

.titulo_pequeÃ±os{
    font-size: 1em;
    color: #9fd11f;
}
</pre></body></html>