/* font */
@font-face {
  font-family: 'Press Start 2P';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../PressStart2P-Regular.woff) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --yellow: #FFC570;
  --white: #EFD2B0;
  --blue: #547792;
  --darkblue: #1A3263;
}

* {
  font-family: "Press Start 2P";
}
.tetris {
  max-width: 300px;
  margin:auto;
  display:grid;
}
.tetris-info {
  max-width: 300px;
  height: 50px;
  margin: auto;
  padding-bottom: 20px;
  display: inline-flex;
}
.ui {
  min-width: 100px;
}

optgroup {
  font-family: "Press Start 2P" !important;
  font-style: normal;
}
.tetris-canvas {
  width: 300px;
  color:var(--yellow);
}
.canvas {
  background-color: var(--darkblue);
}
 .game-over-div {
  padding-top: 40px;
}
.game-over-para1, .game-over-para2 {
  display: none;
  margin: auto;
  text-align: center;
} 