.touch_menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0; 
  display:flex;    
  flex-wrap: wrap;
  justify-content:center;  

}

.touch_menu li{     
  display:flex;
  justify-content:center; 
  align-items:center; 
  margin:5px;
  width: 180px;
  height:60px;
  background-color:#e6eddc;
  font-family:'casablanca_antique';  
  border-radius: 8px;    
} 

.touch_menu li:hover{     
  border:1px solid;
}                         
.touch_menu li a{
  color: #630202;                    
  font-size: 1.5em; 
  font-weight: bold;
  text-decoration: none;
}
         
@media all and (max-width: 800px){     
  .touch_menu li{   
      margin:10px;
      width: 340px;
      height:120px;
      border-radius: 16px; 
    }
  .touch_menu li:hover{  
      color: #630202;    
      border:3px solid;
    }  
  .touch_menu li a{
      font-size: 2.5em;
    }       
} 
