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');
   background-size: cover;
   border: 3px solid #333;
   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;
  }
  
  