html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

pre {
    margin: 0;
}

.quote {
    margin-top: 20px;
}

@media (max-width: 600px) {
    body {
        flex-direction: column;
    }

    pre {
        font-size: 12px;
    }

    .quote {
        margin-top: 20px;
    }
}

.japanese {
    font-size: 16px;
    font-weight: 500;
}

::selection {
    background: transparent;
    color: inherit;
}

::-moz-selection {
    background: transparent;
    color: inherit;
}