body{
    background-color: rgb(245, 224, 185);
    min-width: 830px;

}
#title{
    padding-top: 20px;
    font-size: 50px;
    text-align: center;
    left: 44%;
    color: rgb(117, 68, 102);
}
.topbar{
  
    width: 100%;
    background-color: rgb(235, 149, 168)
    
}
#start{
    /* position: absolute;
    left: 20%;
    top:10%; */
    border: none;
    margin-top: 50px; 
    width: 15%;
    font-size: 30px;
    border-radius: 8px;
    background-color: thistle;
    box-shadow: 5px 5px 3px 2px rgba(165, 96, 108, 0.308);
}
#end{
    /* position: absolute;
    left: 70%;
    top:10%; */
    font-size: 30px;
    width: 15%;
    border-radius: 8px;
    margin-top: 50px; 
    border: none;
    background-color: thistle;
    box-shadow: 5px 5px 3px 2px rgba(165, 96, 108, 0.308);
    
}
.topbar .score{  
   
    width: 800px;  
    margin: 0 auto;
    height: 100px;
    line-height: 1.5;
    text-align: center;
    display: flex;
    justify-content: space-around;
    
}
.topbar .score div{  
    margin-top: 30px; 
    box-shadow:  5px 5px 3px 2px rgba(233,147,162,0.6);
    width: 25%;
    height: 150px;
    border-radius: 15px;
    font-size: 30px;
    background-color: rgb(235, 149, 168)
    
}

/* game part */
.game{
  
    box-shadow:  8px 8px 8px 2px rgba(233,147,162,0.6);
    height: 460px;
    width:  470px;
    margin: 100px auto;
    background-color: pink;
    border-radius: 25px;
    margin-bottom: 50px;
}

.row div{
  border: 1px solid rgba(233,147,162,0.6);
  box-shadow:  8px 8px 8px 2px rgba(233,147,162,0.6);
  display: inline-block;
  height: 100px;
  width: 100px;
  margin-left: 10px;
  margin-top: 10px;
  text-align: center;
  line-height: 100px;
  font-size: 40px;
  vertical-align: top;
  border-radius: 25px;
  background-color: thistle;
  

}

/* arrow part */
.arrow{
    width: 550px;
    margin: 20px auto;
    text-align: center; 
    display: flex;   
    
}
.arrow img{
    width: 100px; 
    height: 100px;  
    box-shadow:  8px 8px 8px 2px rgba(83, 82, 70, 0.6);      
    margin: 0 20px;
    
}
#up img:hover{
    opacity: 0.6;
    margin-top: 5px;   
    
}
#down img:hover{
    opacity: 0.6;
    margin-top: 5px;   
    
}
#left img:hover{
    opacity: 0.6;
    margin-top: 5px;   
   
}
#right img:hover{
    opacity: 0.6;
    margin-top: 5px;
       
}

#show{
    visibility: visible;
    transition: 3s;
}
#hide{
    visibility: hidden;
    transition: 3s;
}
#move{
    
}

