@import url("https://fonts.googleapis.com/css?family=Press+Start+2P");
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}

* {
    font-family: 'Press Start 2P',;
    box-sizing: border-box;
}

#app {
    padding: 1rem;
    background: black;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: blue;
    text-shadow: 0 0 10px;
    font-size: 6rem;
    flex-direction: column;
}
#app .txt {
    font-size: 1.8rem;
    line-height: 1.5;
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    49% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 3;
    }
}
.blink2 {
    animation-name: blink;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}


#mi {
    padding: 1rem;
    display: flex;
    height: 50%;
    align-items: left;
    color: blue;
    text-shadow: 0 0 10px;
    font-size: 6rem;
    flex-direction: column;
}
