@font-face {
  font-family: "arcade";
  src: url("../assets/fonts/ARCADE.TTF") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow: hidden;
  cursor:no-drop;
  /* cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><rect width='20' height='20' fill='black'/></svg>") 10 10, auto; */
  
}

canvas {
  
}

#game-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  
}
#game-background {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: black;
  z-index: 1;
}

img {
  width: 100%;
  height: 100%;
}

#game-container {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


         
.new-game {
  opacity: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: 'arcade';
  cursor: pointer;
  font-size: 34px;
  background-image: linear-gradient(to right, #D31027 0%, #EA384D  51%, #D31027  100%);
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;            
  box-shadow: 0 0 20px #000;
  border-radius: 10px;
  
  z-index: 99;
}

.new-game:hover {
  background-position: right bottom; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
  transform: scale(1.05);
}

.sound-control {
  background-color: #D31027; 
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 3;
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px #000;
  cursor: pointer;
  transition: all 0.1s;
}

.sound-control:hover {
  transform: scale(1.1);
}

