
/* RAIZ */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow-x: hidden;

}

/* EFECTO DE VIDRIO */

.background-container{
    background-color: #000000;
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.card-container{
    position: static;
    width: 38rem;
    height: 23rem;
    /* border: 2px solid #fafafa10; */
    margin: 0 auto;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* opacity:0.8 ; */
}


/* .glass-effect{
    background-color: #fafafa10;
    backdrop-filter: blur(0.4rem);
    -webkit-backdrop-filter: blur(0.4rem);
} */

/* TEXTO PRINCIPAL */

.text-principal{
    font-size: 1.7rem;
    font-weight: 500;
    color: #fafafa;
    text-align: center;
}


.text-secundario{
    font-size: 1.5rem;
    font-weight: 500;
    color: #fafafa;
    text-align: center;
    margin-bottom: 1.5rem;
}


/* Animacion de Color*/

span{
    background: linear-gradient(45deg, #d2001a, #7462ff, #f48e21);
    background-size: 300% 300%;
    -webkit-background-clip: text;  /*Permite al fondo actual como color de letra*/
    -webkit-text-fill-color: transparent; /*Hace que el color de letra actual sea transparente*/
    animation: colorText 16s ease-in-out infinite;
}


@keyframes colorText {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* EFECTO DE COLORES */


.blob-outer-container {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 0;
    inset: 0;
    margin: auto;
    filter: blur(100px);
    opacity: 0.25;
}

.blob-inner-container {
    border-radius: 99999px;
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100vw;
    height: 100vh;
    min-width: 500px;
    overflow: hidden;
    background-color: #fff;
    transform: scale(0.8);
}

.blob {
    position: absolute;
    width: 100vw;
    height: 100vh;
    inset: 0;
    margin: auto;
    background: conic-gradient(from 0deg, #08f, #f60, #bbffa1, #4c00ff, #ab2666, #09f);
    animation: spinBlob 8s linear infinite;
}

@keyframes spinBlob {
    0% {
        transform: rotate(0deg) scale(2);
    }

    100% {
        transform: rotate(1turn) scale(2);
    }
}


