*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #cccccc;
}

.container {
    height: 100vh;
    width: 100%;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.text--principal{
    display: flex;
    justify-content: center;
    padding-bottom: 2px;
    font-size: 1.9rem;
}

.text--secundario{
    padding-top: 2px;
    font-size: 1.3rem;
}

/* 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%; }
}