@charset "utf-8";
/* CSS Document */
/* Box Menu -------------------------------------------------------------------- */
.box-menu{
    width:100%;
    border-collapse:separate;
    border-spacing:5px;
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    grid-template-rows:auto 
}
.box-menu button{
 	border-radius: 10px;
   	display:grid;
    border:#CCC thin solid;
    margin:5px;
    width:auto;
	align-self: center;
}
.box-menu button img{
	border:none;
 	border-radius: 10px;
}
.box-menu button .box-button-text{
	text-align:center;
	height:130px;
}
.box-menu button .box-button-text h2{
	margin-top:0px;
	margin-bottom:5px;
	font-size:90%;
}
.box-menu button .box-button-text p{
	font-size:65%;
	margin-top:0px;
}

@media screen and (max-width: 800px) {
.box-menu{
    grid-template-columns:1fr 1fr;
}
@media screen and (max-width: 600px) {
.box-menu{
	font-size:130%;
	grid-template-columns:100%;
}
.box-menu button .box-button-text{
	height:150px;
}
}

