body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-color: darkslategray;
    font-family: 'Share Tech Mono', monospace;
}

#gameContainer {
    position: relative;
    width: 1600px;
    height: 900px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:  0 0 30px 0px rgba(0, 0, 0, 0.5);
}

canvas {
    width: 100%;
}

#dashboard {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    align-items: center; /* Vertically center the text */
    background: rgba(240, 240, 240, 0.8); /* Slightly transparent background */
    padding: 10px;
    border-radius: 10px;
    border: 4px solid white; /* White outline */
}

#dashboard.blink {
    animation: blink 0.5s 3;
}

#dashboard.blink-red {
     animation: blink-red 0.5s 3;
 }

#question {
    margin-right: 10px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 22px; /* Slightly bigger text */
    color: #000;
    white-space: nowrap;
    overflow: auto;
}

#question::after {
    content: " =";
}

#answerInput {
    font-family: 'Share Tech Mono', monospace;
    font-size: 22px; /* Slightly bigger text */
    color: #000;
    background: transparent;
    border: none;
    outline: none; /* Remove focus outline */
    caret-color: #000; /* Black blinking cursor */
    width: 100px;
}

#submitAnswer {
    font-size: 20px; /* Larger font size */
    padding: 5px 20px; /* Padding for a larger button */
    border-radius: 10px; /* Rounded corners */
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor on hover */
    margin-left: 10px; /* Space between input and button */
}

#submitAnswer:hover {
    background-color: #45a049; /* Darker shade on hover */
}

@keyframes blink {
    0% { border-color: white; }
    100% { border-color: lime; }
}

@keyframes blink-red {
    0% { border-color: white; }
    100% { border-color: red; }
}