
#menu {}
/* 250, 230, 177  tan
rgb(79, 112, 121) darker teal blue*/ 


.title {
	padding-top: 10px;
	padding-bottom: 0px;
}

.menuitems {
	padding-top: 0px;
	padding-bottom: 15px;
}

body {background: linear-gradient(to right, rgb(153, 211, 223), rgb(136, 187, 214), rgb(205, 205, 205), rgb(233, 233, 233));
text-align: center;
font-family: sans-serif;
font-size: 1.5em;
} /* try contain instead of cover*/

#subtitle {
font-size: 1.5em;
color:black;
padding-top: 25px;
padding-bottom: 5px;
margin-top: 0px;
margin-bottom: 0px;
}

/* electric green and tin (60, 196, 123,)   & (130, 128, 129,)
orange - 


/* This row column setup gets images to keep their scale in a grid format */
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  justify-content: center;
}

/* Create four equal columns that sits next to each other */
.column {
  max-width: 23.5%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  border: 1px solid black;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    max-width: 47.5%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .column {
    max-width: 99%;}
	
  #subtitle {font-size: 1.25em;}
  .image__title {font-size: 1.25em;}
  body {font-size: 1.25em;}
  .title {font-size: 1.75em;}
}

.image {position: relative;}

.image__img{
	display: block;
	width: 100%;
}

.image__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: 1px;
	display: flex;
	flex-direction: colum;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
	}

.image__overlay > * {
	transform: translateY(20px);
	transition: transform 0.3s
	}

.image__overlay:hover {
	opacity: 1;
	backdrop-filter: blur(3px);
	}	

.image__overlay:hover > * {
	transform: translateY(0);
	}

.image__title {
	font-size: 1.5em;
	font-weight: bold;
	}

/* fonts.google.com for fonts we can add if wanted besides standard ones

*/

 