body {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.87);
    background-color: #000000;
    /* font-family: "Press Start 2P", system-ui; */
    font-family: "Luckiest Guy", cursive;
    font-weight: 400;
    font-style: normal;
}

.debug {
  font-family: monospace;
  color: red;
}



#app {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.spritePosition {
    margin: 10px 0 0 10px;
    font-size: 0.8em;
}

.button {
    width: 140px;
    margin: 10px;
    padding: 10px;
    background-color: #000000;
    color: rgba(255, 255, 255, 0.87);
    border: 1px solid rgba(255, 255, 255, 0.87);
    cursor: pointer;
    transition: all 0.3s;

    &:hover {
        border: 1px solid #0ec3c9;
        color: #0ec3c9;
    }

    &:active {
        background-color: #0ec3c9;
    }

    &:disabled {
        cursor: not-allowed;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: rgba(255, 255, 255, 0.3);
    }
}


.game-ui {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 1.5rem;
    text-shadow: 0.2rem 0.2rem 0 black;
}

.game-ui .hud {
  pointer-events: none;
}


.game-ui .top, .game-ui .bottom {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    pointer-events: auto;
    width: 100%;
    padding: 1rem;
}

.game-ui .top {
    position: relative;
    top: 0;
}

.game-ui .bottom {
    position: relative;
    bottom: 0;
}

.game-ui .title {
  background: url("./assets/log.png");
  background-size: contain;
  image-rendering: pixelated;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none ;
  display: flex;
  justify-content: center;
  padding: 6rem;
  font-size: 3rem;
}

.game-ui .main-menu, .game-ui .game-over {

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: all;

  ul {
    font-size: 2rem;
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;

    li {
      margin: 1rem 0;

      &:hover {
        cursor: pointer;
        color: #dadada;
        text-shadow: 0 0 3px rgba(100, 100, 100, 0.5);
      }
    }
  }
}
