/* @MiRetratito */
/* #MiRetratitoPoetry */

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: "Courier New", Courier, monospace;
    background: #f5f1e6;
    color: #333;
}

#poema-container {
    position: absolute;
    top: 20px;
    left: 5%;
    max-width: 90%;
    white-space: pre-wrap;
    color: #333;
    z-index: 10;
}

#cursor {
    display: inline-block;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

canvas {
    display: block;
    background: #f5f1e6;
    width: 100vw;
    height: 100vh;
}
