
#canvas {
  display: none;
}

body{
  background-image: url("../img/bg.png");
  background-size: 1366px 650px;
  background-repeat: no-repeat
}
.modal {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center
}

#gameOver {
  
  width: 100%;
  height: 100%;
}

#levelCleared {
  width: 100%;
  height: 100%;
}

#buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button:hover{
  cursor: pointer;
  padding-top: 0;
  transform: scale(1.15)
}

.button{
  padding-top: 70px;
  width: 100px;
  height: 90px;
  margin: 20px;
  transition: transform .5s, padding-top .5s;
}

#initbutton {
  position: fixed;
  top: 480px;
  left: 500px;
  transition: transform .5s;
}

#initbutton:hover {
  transform: scale(1.05);
  cursor: pointer;
}
