/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, /*css reset*/
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root{
	--black: #0D0D0D;
	--white: #F2F2F2;
	--blue: #7abfbf;
	--lt-blue: rgba(122, 191, 191, .5);
	--orange: #EB5428;
}

html{
	border: 35px solid var(--lt-blue);
	min-width: 414px;
	overflow-x: hidden;
}

body{
	padding: 0;
    margin: 0;
    width: 100%;
	min-width: 414px;
}

p, dd, li, nav, input{
	font-size: 16px;
	font-family: "Montserrat", sans-serif;
}

header{
	position: relative;
	top: 80px;
	padding: 80px;
}

h1{
	display: block;
	font-family: "Bebas Neue", sans-serif;
	font-size: 40px;
	text-align: center;
}

main img{
	display: block;
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

menu{
	text-decoration: none;
	display: flex;
	justify-content: center;
	list-style: none;
	gap: 50px;
}

menu li{
	font-size: 20px;
	font-family: "Bebas Neue", sans-serif;
}

#save, #share, #print, #jump{
	text-decoration: none;
	color: var(--orange);
}

menu span{
	display: flex;
	position: relative;
}

p{
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	padding: 15px;
}

h2{
	font-size: 30px;
	text-align: center;
	font-family: "Bebas Neue", sans-serif;
}

#details ul{
	text-align: left;
	padding:10px;
}

#details li{
	padding: 5px;
}

#ingredients ul{
	margin-left: 2em;
	list-style-type: square;
}

#ingredients li{
	padding: 5px;
}

#directions ol{
	margin-left: 2em;
	list-style: decimal;
}

#directions li{
	padding: 10px;
}

#sides{
	background-color: var(--blue);
	display: grid;
	grid-template-columns: 1fr 1fr;
	row-gap: 50px;
}

#sides h2{
	grid-column: 1/ span 2;
	padding-top: 15px;
}


#sides svg{
	position: relative;
	left: 200px;
	bottom: 20px;
}

#sides span{
	position: relative;
	left: 200px;
	bottom: 60px;
	font-weight: bold;
}

#images{
	width: 75%;
	height: 75%;
	grid-column: 1;
	padding: 4px;
}

#images img{
	padding-top: 10px;
}

#sides dl{
	display: grid;
	position: relative;
	bottom: 20px;
}

#sides dt{
	font-family: "Montserrat", sans-serif ;
	font-weight: bold;
	position: relative;
	top: 35px;
}

.filled{
	fill: var(--orange);
}

#top p{
	grid-column: 2;
	word-spacing: 2px;
	line-height: 35px;
}


#logo{
	position: relative;
	left: 125px;
}

#sign-in{
	position: relative;
	left: 230px;
	bottom: 15px;
	text-decoration: none;
}

#sign-in span{
	position: relative;
	left: 110px;
}


.search{
	position: absolute;
	bottom: 800px;
	display: block;
	left: 120px;
	border: 3px solid var(--orange);
	padding: 5px;
	background: white;
}

.search input{
	outline: none;
	background-color: white;
	border: 0;
	position: relative;
	bottom: 15px;
}

#search-button{
	background-color: var(--orange);
}

#fb, #insta, #youtube, #tik{
	text-decoration: none;
	color: var(--orange);
	font-family: "Bebas Neue", sans-serif;
}

#tik svg{
	position: relative;
	bottom: 7px;
}

#tik span{
	position: relative;
	top: 9px;
	right: 40px;
}

#social ul{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	padding: 52px;
	align-items: center;
}

#social h2{
	display: none;
}

footer{
	text-align: center;
	font-weight: bold;
}

footer img{
	width: 50%;
}

footer p{
	padding: 0;
	padding-top: 10px;
}

#social span:hover, header span:hover{
	background-color: var(--orange);
	color: var(--white);
}

nav li:hover{
	background-color: var(--orange);
	color: var(--white);
}

@media screen and (min-width: 414px) {

	nav {
		grid-area: nav;
		min-width: 414px;
		background-color: #ffffff;
		box-shadow: 0px 3px 3px #bbb;
		position: fixed;
		top: 0;
		z-index:5;
	}
	
	nav ul {
		grid-area: hamberger;
		padding: 0;
		margin: 0;
		list-style: none;
		overflow: hidden;
		max-height: 0;
	}
	nav li img {
		display: none;
	}
	nav li a {
		display: block;
		padding: 20px;
		text-decoration: none;
	}
	nav label {
		cursor: pointer;
		display: inline-block;
		user-select: none;
		position: relative;
		bottom: 5px;
		left: 30px;
	}
	nav span {
		display: block;
		position: relative;
	}
	nav label svg {
		display: block;
	}
	label span:before, label span:after {
		content: '';
		display: block;
		height: 100%;
		position: absolute;
		width: 100%;
	}
	nav input {
		display: none;
	}
	nav input:checked ~ ul {
		max-height: 550px;
	}
	nav h2 {
		visibility: hidden;
		height: 1px;
		width: 1px;
	}


	
}

@media screen and (min-width: 768px) {
	h1{
		text-align: left;
	}



	header{
		height: 40px;
	}

	menu{
		backdrop-filter: blur(25px);
		gap: 150px;
		background-color: rgba(248, 248, 248, 0.5);
		width: 125%;
		position: relative;
		right: 80px;

	}

	main img{
		width: 100%;
	}

	html{
		border: 50px solid var(--lt-blue);
	}

	#details{
		display: inline;
	}

	#details li{
		display: flex;
		justify-content: center;
	}

	#details span{
		padding-right: 10px;
	}


	#split{
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	#sides dl{
		position: relative;
		right: 50px;
	}


	#images{
		width: 50%;
	}

	
	#images svg{
		position: relative;
		left: 315px;
	}

	footer img{
		width: 25%;
	}

	footer{
		position: relative;
		right: 250px;
		bottom: 75px;
		z-index: -1;
	}

	#social{
		position: relative;
		left: 150px;
		top: 60px;
	}

	#fb span{
		position: relative;
		top: 9px;
		right: 40px;
	}

	#fb{
		position: relative;
		left: 100px;
	}
	#insta{
		position: relative;
		left: 75px;
	}
	#youtube{
		position: relative;
		left: 50px;
	}
	

	#insta span{
		position: relative;
		top: 9px;
		right: 40px;
	}

	#youtube span{
		position: relative;
		top: 9px;
		right: 40px;
	}


	nav{
		height: 200px;
		width: 800px;
		display: block;
	}

	body{
		padding-top: 50px;
	}

	#burger{
		visibility: hidden;
	}

	#dropdown label{
		visibility: hidden;
	}

	.search{
		z-index: 99;
		position: relative;
		left: 500px;
		bottom: 3300px;
		width: 265px;
	}

	

	nav ul {
		display: flex;
		padding-bottom: 100px;
	}

	nav li img {
		display:flex;
		width: 75%;
	}

	


}









@media screen and (min-width: 1280px) {
	h1{
		text-align: center;
	}

	menu{
		display: inline;
		position: relative;
		top: 50px;
	}
	
	#top{
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	#top img{
		width: 80% ;
		grid-column: 1;
	}

	#top p{
		grid-column: 2;
		word-spacing: 4px;
		line-height: 30px;
	}


	.search{
		left: 1200px;
		bottom: 3400px;
	}

	body{
		padding-top: 50px;
	}

	nav{
		position: fixed;
		padding-bottom: 50px;
		height: 200px;
	}

	nav ul {
		display: flex;
		height: 100%;
		width: 100%;
	}

	nav li img {
		display:flex;
	}

	#sign-in{
		position: relative;
		right: 200px;
	}

	#details ul{
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
		
	}

	#details ul span::after{
		content: "\A";
     	white-space: pre;
    	display: block;
	}

	#details{
		display: grid;
		background-color: var(--black);
		color: var(--blue);
		padding-top: 10px;
	}

	#split{
		display: grid;
		grid-template-columns: 1fr 2fr 2fr;

	}

	#directions{
		grid-column: 2/ span 3;
	}

	#directions li{
		padding-bottom: 25px ;
	}
	
	#ingredients li{
		padding-bottom: 20px;
	}

	#sides img{
		width: 75%;
		display: flex;
		left: 250px;
		position: relative;
	}

	#images svg{
		position: relative;
		left: 850px;
	}

	#images span{
		left: 735px;
	}



	footer img{
		width: 20%;
	}

	footer{
		display: flex;
		position: relative;
		left: 50px;
	}

	#social ul{
		display: flex;
		gap: 100px;
		position: relative;
		left: 800px;
	}

	footer p{
		display: block;
		max-width: 14ch;
	}

	.para {
		position: relative;
		top: 30px;
		right: 150px;
	}

	header span:hover{
		width: 5%;
	}

	nav li:hover{
		background-color: var(--orange);
		color: var(--white);
		height: 80%;
	}


	
}