@charset "UTF-8";

/*--
..................................................................................
..................................................................................
..................................................................................
..................................................................................
..................................................^'"'^...........................
................................................ ( u u )..........................
............................/ \ / \ / \ / \ / \ / \.... \.........................
...........................( A | I | L | I | N | G ).....)........................
............................\_/ \_/ \_/ \_/ \_/ \_/...../.........................
..................................................VV..VV..........................
..................................................................................
................................................CREATE BY.........................
........................................................-- AILING!................
..................................................................................
..................................................................................  

--*/
/*home page*/

header {
	width: 100%;
	height: 85px;
	background: linear-gradient(black,#663333);
}
nav {
	font-family: 'Papyrus', sans-serif;	
}
ul {
	float: right;
	font-size: 15px;
	margin-right: 10px;
	margin-top: 45px;
}
header li {
	display: inline-block;
	padding-right: 2vw;
	text-decoration: none;
}
header li a {
	color: white;
	text-decoration: none;
}
header li a:link {
	color: white;
	text-decoration: none;
}
header li a:hover {
	color: lightcoral;
	text-decoration: underline;
}

.icon {
	float: right;
	margin-top: 28px;
	margin-right: 28px;
}

.search {
	float: right;
	margin-top: 42px;
	padding-right: 2vw;
}

h1 {
	font-family: 'Papyrus', sans-serif;
	font-size: 28px;
	color: sandybrown;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 40px;
	transition: transform 2s;
}
h1:hover {
	transform: scale(1.5);
}

h3 {
	font-family: 'Verdana', sans-serif;
	font-size: 14px;
	color: white;
	padding-top: 10px;
	text-align: center;
}
p {
	font-family: 'Tahoma', sans-serif;
	font-size: 10px;
	color: white;
	text-align: center;
}

.ins {
	float: left;
	margin-left: 49%;
	position: static;
}

.logo {
	margin-left: 46px;
	margin-top: 1vh;
	position: absolute;
}

.cart {
	position: fixed;
	margin-left: 1220px;
	margin-top: 10vh;
}

div#illus {
	position: relative;
	padding-right: 20px;
	margin-left: 24%;
	margin-bottom: 20px;
}


footer {
	width: 100%;
	height: 140px;
	background-color: black;
	position: absolute;
}

/*menu page*/

#menu {
	width: 100%;
	height: auto;
	background-color: antiquewhite;
}

.categories {
	float: left;
	margin-top: 65px;
	height: 800px;
	flex: 20%;
}
h2 {
	font-size: 20px;
	font-family: 'Verdana', sans-serif;
	margin-left: 80px;
	color: steelblue;
}

ol {
	margin-left: 60px;
}
main li {
	display: grid;
	padding-bottom: 5px;
}

main li a {
	text-decoration: none;
	color: black;
}

main li a:hover {
	color: sandybrown;
}
h4 {
	font-family: 'Verdana', sans-serif;
	font-size: 16px;
	margin-left: 20px;
}

h5 {
	font-family: 'Papyrus', fantasy;
	font-weight: lighter;
	font-size: 16px;
	margin-left: 20px;
}


.start {
	float: left;
	margin-left: 150px;
	margin-top: 50px;
	flex: 40%;
}

.pasta {
	float: right;
	margin-right: 100px;
	margin-top: 50px;
	flex: 40%;
}

.wine {
	float: left;
	margin-left: 150px;
	margin-top: 50px;
	flex: 40%;
}
.cocktail {
	float: right;
	margin-right: 100px;
	margin-top: 50px;
	flex: 40%;
}
.pizza {
	float: left;
	margin-left: 150px;
	margin-top: 50px;
	flex: 40%;
}
.meat {
	float: right;
	margin-right: 100px;
	margin-top: 50px;
	flex: 40%;
}
.pic:hover {
	transform: rotate(45deg);
}
.footer {
	width: 100%;
	height: 140px;
	background-color: black;
	margin-top: 1200px;
	position: absolute;
}

button#hamburger {
	display: none;

}
.mobile-btn {
	display: none;
}

/*Tablet*/

@media screen and (max-width: 1268px) {

	body {
		width: 100%;
		height: auto;
	}

}

/*Mobile*/

@media screen and (max-width: 768px) {

	body {
		width: 100%;
		height: auto;
	}
	.top-nav {
		display: none;
	}

	.search, .icon {
		display: none;
	}
	.logo {
		float: left;
		margin-left: 25%;
		position: absolute;
	}

    button#hamburger {
    	display: initial;
    	padding: 5px;
    	margin-top: 20px;
    	margin-left: 18px;
    	font-size: 25px;
    	color: black;
    	background-color: white;
    	border: 4px solid white;
    	border-radius: 20%;
    }
    button:hover {
    	color: white;
    	background-color: black;
    }


}


	



