/* for the text box  */
:root {
    --border-color: #291D4D;
    --dialog-background: #FFF3B4;
  
    --menu-background: #FFE8D2;
    --menu-border-color: #A48465;
    --menu-font-color: #3A160D;
    --menu-selected-background: #7fc2ff;
  }
  
  * {
    box-sizing:border-box;
  }
  
  /* body {
    background: #333;
    padding: 0;
    margin: 0;
    overflow: hidden;
  } */
  
  .game-container {
    position: relative; 
    width: 352px;
    height: 198px;
    margin: 0 auto;
    outline: 1px solid #fff;
  
    transform: scale(3) translateY(50%);
  }
  
  .game-container canvas {
    image-rendering: pixelated;
  }
  
  /* #timer-display,
  #score-display{
    color: white;
    font-size: xx-large;
  } */