body{
	margin: 0;
	background-color: white;
	text-align: center;
	display: block;
	overflow-x: hidden;
}

a{
	color: inherit;
	text-decoration: inherit;
}

.header{
	color: white;
	position: fixed;
	z-index: 10;
	right: 0;
	display: grid;
	margin: 0px;
	width: 100vw;
	text-align: right;
	padding: 50px 10vw 20px 10vw;
	background-color: rgba(0,0,0,0);
	transition: all 300ms linear;
	align-items: center;
}

.header.stuck{
	background-color: white;
	color: black;
	padding: 20px 10vw;
	box-shadow: 0 0 10px rgba(0,0,0,.1);
}

.headerMenu{
	color: inherit;
	font-size: 14px;
	text-transform: uppercase;
	margin: 10px;
	display: inline-block;
}

#iconholder{
}

.navholder{
}

#headericon{
	height: 50px;
	width: auto;
}

.active{
	color: #92E60A;
}
.active::before{
	content: "• ";
}
.active::after{
	content: " •";
}

.bodyBlock{
	display: grid;
    align-items: center;
	color: black;
	font-family: Times New Roman;
	width: 85%;
	max-width: 1224px;
	margin: 0px auto 75px;
	min-height: 80vh;
	height: 100%;
}

.fadecontainer{
	box-sizing: border-box;
	border: 15px solid white;
	background-color: rgba(0,0,0,0.4);
	display: grid;
	align-items: center;
	width: 100%;
	height: 100%;
}

.imgfit{
	width: 100%;
}

#titleHolder{
	margin: 0 auto;
	max-width: 450px;
}

#pageTitle{
	font-size: 40px;
	letter-spacing: 3px;
}

#subtitle{
	font-size: 14px;
	letter-spacing: 2px;
}

#halfBody{
	padding-top: 100vh;
	max-width: 70%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.halfBody{
	text-align: justify;
	padding:30px;
	font-size: 16px;
	line-height: 24px;
}

.subheading{
	font-size: 58px;
	text-align: center;
}

#hero{
	position: absolute;
	color: white;
	display: grid;
    place-items: center;
	max-width: 100vw;
	width: 100%;
	height: 100vh;
	background-position: center; 
  	background-repeat: no-repeat; 
  	background-size: cover;
}

#hours{
	align-items: center;
	display: grid;
	min-height: 70vh;
	width: 100vw;
	max-width: 100%;
	color: white;
	background-image: url("img/open.jpg");
}

#hours .fadecontainer{
	background-color: rgba(0,0,0,0.6);
}

#review{
	min-height: 40vh
}


#footer{
	min-height: 100%;
	display: flex;
    flex-wrap: wrap;
    padding: 10px 20px 80px;
}

.footerThird{
	display: block;
	flex: 1 1 150px;
	text-align: center;
	width: 100%;
	height: 100%;
	margin: 10px 5px 20px;
}

/*MENU AUTO GENERATE*/


#content{
	padding-top: 50px;
	flex-wrap: wrap;
	align-items: stretch;


    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-rows: max-content;

}

.menuHeading{
	text-align: center;
}

.menuColumn{
	text-align: left;

	flex: 1 1 450px; /*  Stretching: */
    margin: 5px;
}

.menuLine{
	margin: 12px 0px;
}

.drinkPrice{
	float: right;
	right: 50px;
}