body {
    background-color: white;
    color: rgb(0, 0, 170);
    font-family: 'Unifont', "Courier New", "Lucida Console", "Consolas", monospace;
    src: url('unifont.ttf') format('truetype');
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}
#ascii-art {
    font-size: 12px;
    line-height: 12px;
    white-space: pre;
    width: 700px;
    height: 700px;
    overflow: hidden;
}
.popup {
    position: absolute;
    background-color: white;
    border: 1px solid rgb(0, 0, 170);
    padding: 10px;
    font-size: 14px;
    z-index: 10;
    text-align: center;
    width: auto; /* Ajuste automático al contenido */
    height: auto; /* Ajuste automático al contenido */
    max-width: 300px; /* Límite de ancho máximo */
    word-wrap: break-word; /* Asegura que el texto no se desborde */
    box-shadow: -5px 9px 0px rgba(0, 0, 170); /* Sombra dura a 120 grados */
}
       
@font-face {
    font-family: 'Unifont';
    src: url('unifont.ttf') format('truetype');
}