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

html,body{
    width: 100%;
    height: 100%;
    margin:0;
}
body{
    background-color: black;
    color: white;
    font-family: Fira Code;
    font-weight: 600;
    font-size:36px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: none;
}

.game-grid{
    margin:0;
    line-height: 20px;
    letter-spacing: -2px;
    user-select: none;
    -webkit-user-select: none; /* For Safari */
    -ms-user-select: none;     /* For IE/Edge */
}

.death-screen{
    white-space:pre;
    font-size: 8pt;
    transform: skewX(-25deg);
    user-select:none;
    display: none;
    margin: 0;
}

red{
    color:red;
}
lime{
    color:lime;
}
green{
    color:green;
}
gray{
    color:#1a1a1a;
}