@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

:root {
  --background-color: #14161b;
  --on-background-color: #c4c6cc;
  --font-family: 'JetBrains Mono', monospace;
  --font-size: 18px;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    width: 100%;
    height: 100vh;
    overflow: hidden
}

#container {
    display: inline-block;
}

#text {
    font-family: var(--font-family);
    font-size: var(--font-size);
    color: var(--on-background-color);
    width: 100%;
    height: 100vh;
    /* Disable font ligatures */
    font-variant-ligatures: none;
    /* Make a text unselectable */
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */

}

.selected {
    background-color: var(--on-background-color);
    color: var(--background-color);
}

#touchArea {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    /* Make the touch area invisible but still able to capture touch events */
    background-color: rgba(0, 0, 0, 0);
}