body {
    margin: 0;
    background-color: #000;
    font-family: monospace;
    font-size: 12px;
    line-height: 1.2;

    background-image: url("../img/ninkoro_big_sis.png");
    background-position: left;
    background-attachment: fixed;
    background-size: contain;
    background-repeat: no-repeat space;
    image-rendering: smooth;

    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 2fr 1fr;

    min-height: 100vh;
}

p {
    color: #ddd;
}

a {
    color: silver;
    text-decoration: none;
}

a::before {
    content: "";
    margin-left: 2ch;
}

a:hover {
    color: gainsboro;
}

a:hover::before {
    content: "> ";
    margin: 0ch;
}

ul {
    list-style: none;
    padding: 0;
    margin: 4px;
}

li {
    margin: 12px 0px;
}

#dialog_container {
    display: grid;
    place-items: center start;
    grid-column: 2;
}

.dialog_box {
    border: medium solid #ccc;
    border-radius: 2%;
    background-color: rgb(0 0 0 / 0.45);
    padding: 10px;
    margin: 3px;
    animation: 5s ease-in-out 1s infinite alternate dialog;
}

.no_box_dialog {
    background-color: rgb(0 0 0 / 0.45);
    padding: 10px;
    margin: 3px;
    animation: 5s ease-in-out 1s infinite alternate dialog;
}

@keyframes dialog {
    from {
        translate: -6px;
    }
    to {
        translate: 5px;
    }
}
