html {
  height: 100%;
}
body {
  margin: 0;
  background: linear-gradient(170deg, rgba(72,15,179,1) 0%, rgba(24,6,58,1) 100%);
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  font-family: "Courier New", Courier, monospace;
}

canvas {
  margin-top: 30px;
  z-index: 10;
  border-radius: 10px;

}


.game-over-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 550px;
  background-color:rgba(72,15,179,1);
  margin-top: -4px;
  z-index: 11;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: whitesmoke;
  border-radius: 10px;
}

button {
  cursor: pointer;
  color: rgb(255, 255, 255);
  background-color: #5080FC;
  border: none;
  height: 30px;
  width: 130px;
  border-radius: 10px;
  font-size: 15px;
  font-family: "Courier New", Courier, monospace;
}

button:hover {
  filter: brightness(110%);
}

button:active {
  transform: scale(0.95);
}

button:focus {
  outline: none;
}

/* Montior and Larger */
@media screen and (min-width: 1800px) {
  canvas {
    margin-top: 100px;
  }

  .game-over-container {
    margin-top: -19px;
  }
}

/* Large Smartphone (Vertical) */
@media screen and (max-width: 500px) {
  canvas {
    width: 100%;
    height: 700px;
    margin-top: 50px;
  }

  .game-over-container {
    width: 100%;
    height: 700px;
  }
}
