body{
  font-family: 'Comic Sans MS', sans-serif;
  text-align: center;
  background: Linear-gradient(#d0f0ff, #f9f9f9);
}
h1 {
  color: #003366;
}
#maze{
  position: relative;
  width: 300px;
  height: 300px;
  background-image: url('https://i.imgur.com/EaopI2u.png');
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px #0004;
}
#maze img {
  position: absolute;
  width: 30px;
  height: 30px;
}
#player{
  top: 10px;
  left: 10px;
  transition: all 0.1s ease;
}
#goal{
  bottom: 10px;
  right: 10px;
}

  