body{
  margin: 0;
}

h1{
  width: 100%;

  color: #f94835;
  font-size: 4em;
  font-family: 'VT323', monospace;
  text-align: center;
}

#game{
  position: fixed;
  top: 0;
  left: 0;

  width: 100vw;
  height: 100vh;
  box-shadow: 1px 1px 10px -5px rgba(0, 0, 0, 0.5);

}

#cursor{
  position: fixed;
  top: 50%;
  left : 50%;
  background-color: transparent;
  border: 1px solid #00000090;
  box-sizing: border-box;
}

#zoom{
  height: 40px;
  width: 40px;
  font-size: 35px;
  line-height: 40px;
  color: white;
  font-weight: 400;
  font-family: arial,helvetica,sans-serif;
  text-align: center;
  cursor: pointer;


  position: fixed;
  top: 1em;
  right: 1vw;

  background-color: #00000077;
  border-radius: 50%;
}

#dezoom{
  height: 40px;
  width: 40px;
  font-size: 35px;
  line-height: 33px;
  font-family: arial,helvetica,sans-serif;
  color: white;
  font-weight: 400;
  text-align: center;
  cursor: pointer;


  position: fixed;
  top: 2.5em;
  right: 1vw;

  background-color: #00000077;
  border-radius: 50%;
}
