@import url('https://fonts.googleapis.com/css2?family=Bitcount+Prop+Single:wght,ELSH,ELXP@247,66.2,35&display=swap');

html, body {
    height: 100%;
    margin: 0;
}

body {
    background: radial-gradient(200% 200% at top left,
            #54BDEC 0%,
            rgb(78, 168, 221) 10%,
            #0F53A8 90%);
    display: flex;
    /* Activa Flexbox */
    flex-direction: column;
    /* Para que imagen y texto se apilen */
    justify-content: center;
    /* Centra verticalmente */
    align-items: center;
    /* Centra horizontalmente */
    text-align: center;
    /* Centra el texto de forma adicional */

}

#slogan {
    min-height:150px;
    font-size: 1.2rem;
    color: white;

    font-family: "Bitcount Prop Single", system-ui;
    font-optical-sizing: auto;

    font-style: normal;

    font-weight: 400;
    font-style: normal;
    color: white;

    display: inline-block;
    overflow: hidden;
}

.cursor {
    display: inline-block;
    width: 10px;
    animation: blink .4s step-start infinite;
}
@keyframes blink {
    50% { opacity: 0; }
}