@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #eee;
    color: #111;
    font-family: 'Roboto Mono', monospace;
    overflow: hidden;
    cursor: crosshair;
}

#text-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
    height: 100vh;
    align-content: flex-start;
}

.t-char {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    font-size: 14px;
    transition: transform 0.1s, font-weight 0.1s;
    user-select: none;
}
