@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;1,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Love Ya Like A Sister');


* {
    font-family: 'Poppins', cursive;
}

@font-face {
    font-family: myFirstFont;
    src: url(../fonts/Little\ love.ttf);
}

body {
    color: azure;
    width: 100%;
    height: 82vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    position: fixed;
}

.greetings {

    z-index: 99;
    font-size: 7rem;
    font-weight: 900;
}

.greetings span {
    font-family: myFirstFont;
    display: inline-block;
    font-size: 4rem;
    font-weight: 900;
    opacity: 0;
    position: relative;
    color: transparent;
    animation: colorChange 5s infinite, gradientAnimation 5s ease-in-out infinite;
}


/* Animación de cambio de color con degradado */
@keyframes gradientAnimation {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 100%;
    }
}

/* Añadir gradiente animado al texto */
@keyframes colorChange {
    0% {
        opacity: 0.1;
        background: linear-gradient(0deg, #2126cc, yellow);
        background-clip: text;
    }

    25% {
        background: linear-gradient(0deg, yellow, #e54c06);
        background-clip: text;
    }

    50% {
        opacity: 1;
        background: linear-gradient(0deg, #e54c06, #c0c012);
        background-clip: text;
    }

    75% {
        background: linear-gradient(0deg, #c0c012, #00ff3c);
        background-clip: text;
    }

    100% {
        opacity: 0.1;
        background: linear-gradient(0deg, #00ff3c, #2126cc);
        background-clip: text;
    }
}

.description {
    margin-top: 20px;
    font-size: 24px;
    color: #f28909a4;

}

.rain {
    position: absolute;
    top: -50px;
    font-size: 20px;
    animation: fall 1s linear;
}

.button {
    margin-top: 40px;
}

button.botones{
    background: none;
    border: none;
}
button.botones a{
    background-color: #0a2be9;
    color: white;
 padding: 10px 20px;
    text-decoration: none;
    border: none;
    border-radius: 80px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
    z-index: 500;
}

button.botones a:hover {

    background: rgb(235, 170, 6);
}



.toRotate {
    transition: 2.5s;
    -webkit-transition: 2.5s;
    -moz-transition: 2.5s;
    -o-transition: 2.5s;
}

.rotate {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}


.night {
    z-index: -2;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    filter: blur(0.1vmin);
    background-image: radial-gradient(ellipse at top,
            transparent 0%,
            rgb(0, 0, 0)),
        radial-gradient(ellipse at bottom,
            rgb(0, 0, 0),
            rgba(6, 93, 113, 0.5)),
        repeating-linear-gradient(220deg,
            rgb(0, 0, 0) 0px,
            rgb(0, 0, 0) 19px,
            transparent 19px,
            transparent 22px),
        repeating-linear-gradient(189deg,
            rgb(0, 0, 0) 0px,
            rgb(0, 0, 0) 19px,
            transparent 19px,
            transparent 22px),
        repeating-linear-gradient(148deg,
            rgb(0, 0, 0) 0px,
            rgb(0, 0, 0) 19px,
            transparent 19px,
            transparent 22px),
        linear-gradient(90deg, rgb(124, 221, 13), rgb(240, 240, 240));
}