html,body {
    margin: 0;
    padding: 0;
    
  }
  
  body {
    padding-top: 1em;
    text-align: center;
    background-color: black;
    background-image: url("./Assets/background.gif");
    background-size: cover; */
    background-repeat: space;
  }
  
  h1, h2 {
    font-family: 'Press Start 2P', monospace;
    /* background-image: url("./Assets/background.gif"); */
    /* font-family: monospace; */
    color: rgb(32, 190, 218);
  }
  
  canvas {
    background-image: url("./Assets/background.gif");
    /* background-repeat: repeat; */
    background-color: rgb(9, 0, 87);
    width: 100%;
    height: 100;
  }
  
  #container {
  max-width: 50em;
  /* height: 70vh; */
  background-color: rgba(152, 6, 250, 0.87);
  margin: 0 auto;
  padding: 1em;
  display: grid;
  grid-gap: 1em;
  grid-template-rows: .10fr .5fr .10fr;
  grid-template-columns: .25fr .5fr .25fr;
  grid-template-areas: "top-left top-left top-right"
                        "game game game"
                        "btm-left btm-right btm-right";
  }
  
  #top-left, #top-right, #btm-left, #btm-right {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222;
  }
  
  #top-left {
    grid-area: top-left;
  }
  
  #top-right {
    grid-area: top-right;
    /* background-color: #222; */
    /* background-image: url('../img/funky-lines.png'); */
  }
  
  main {
    grid-area: game;
  }
  
  
  #btm-left {
    grid-area: btm-left;
    /* background-color: #222; */
  }
  
  #btm-right {
    grid-area: btm-right;
    /* background-color: #222; */
  }

  #starImage {
    display: none;
  }

  #meteorImage {
    display: none;
  }

  #playerImage {
    display: none;
  }

  #startButton {
    /* background-image: url("./Assets/background.gif"); */
    background-color: rgb(0, 112, 163);
    color: white;
    font-size: larger;
  }

  #restartButton {
    /* background-image: url("./Assets/background.gif"); */
    background-color: rgb(0, 112, 163);
    color: white;
    font-size: larger;

  }

  :disabled {
    background-color: rgba(152, 6, 250, 0.87) !important;
    color: rgba(152, 6, 250, 0.87) !important;
  }

  #button-container {
    display: flex;
    justify-content: space-between;
  }
