*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.sharkz{
	font-family: sans-serif;
	text-align: center;
	font-weight: 800;
	color: transparent;
	background:url(bg1.jpg);
	background-position: center;
	-webkit-background-clip:text;
    -moz-background-clip:text;   
	animation: animatedBack 2s ease infinite;
}
@keyframes animatedBack{
	from{
		background-position: 0 0;
	}
	to{
	    background-position: 0 100%;
	}
}
body{
	font-weight: 300;
	font-size: 1.05rem;
	line-height: 1.6;
	font-family: sans-serif;
}
.btn{
	font-family: inherit;
	cursor: pointer;
	outline: 0;
	font-size: 1.05rem;
}
.text{
	opacity: 0.8;
}

.tittle{
	font-size: 2rem;
	margin-bottom: 1rem;
}
.container{
	min-height: 100vh;
}
.meal-wrapper{
	max-width: 1280px;
	margin: 0 auto;
	padding: 2rem;
	background: white;
	text-align: center;

}
.meal-search{
	margin: 2rem 0;
}
.mael-search cite{
	font-size: 1rem;
}
.meal-search-box{
	margin: 1.2rem;
	display: flex;
	align-items: center;
}
.search-control, .search-btn{
	width:100%;
}
.search-control{
	padding: 1rem 1rem;
	font-size: 1.1rem;
	font-family: inherit;
	outline: 0;
	border:1px solid orange;
	color: gray;
	border-top-left-radius: 2rem;
	border-bottom-left-radius: 2rem;
	display: flex;
}
.search-control::placeholder{
	color: orange;
}
.search-btn{
	padding: 1.1rem 1rem;
	font-size: 1.2rem;
	width: 100px;
	background: orange;
	color: white;
	border: none;
	border-top-right-radius: 2rem;
	border-bottom-right-radius: 2rem;
	transition: all 0.4s linear;
}
.search-btn:hover{
	background: darkorange;
}
.meal-result{
	margin-top: 4rem;
}
#meal{
	margin: 2.4rem 0;
}
.meal-item{
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 21px -12px rgba(0,0,0,0.79);
}
.meal-img img{
	padding: 1.5rem 0.5rem;
	height: 350px;
	width: 350px
}
.meal-name h5{
	font-size: 1.4rem;
}
.recipe-btn{
	color: white;
	background: orange;
	font-size: 1.1rem;
	padding: 0.75rem 0 ;
	display: block;
	align-items: center;
	width: 140px;
	margin: 1rem auto;
	border-radius: 2rem;
	transition: all 0.4s linear;
	text-decoration:none;
}
.recipe-btn:hover{
	background: darkorange;
}
.meal-details{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: white;
	background: darkorange;
	border-radius: 1rem;
	width: 90%;
	height: 90%;
	overflow: auto;
	display:none;
	padding: 2rem 0;

}
.meal-details::-webkit-scrollbar{
	width: 10px;
	height: 8px;
	border-radius: 2rem;
    background-color: white;
}
.meal-details::-webkit-scrollbar-thumb{
    background: #aaa;
}
.showRecipe{
	display: block;
}
.meal-details-content{
	margin: 2rem;

}
.meal-details-content p{
	padding: 1rem 0;
}
.recipe-close-btn{
	position: absolute;
	right: 2rem;
	top: 2rem;
	font-size: 1.8rem;
	background: white;
	border:none;
	width: 35px;
	height: 35px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.9;
}
.recipe-title{
	letter-spacing: 1px;
	padding-bottom: 1px;
}
.recipe-category{
	background: white;
	font-weight: 600;
	color: orange;
	display: inline-block;
	padding: 0.2rem 0.5rem;
	border-radius: 0.3rem;
}
.recipe-category{
	background: white;
	font-weight: 600;
	color: orange;
	display: inline-block;
	padding: 0.2rem 0.5rem;
	border-radius: 0.3rem;
}
.recipe-instruct{
	padding: 1rem;

}
.recipe-meal-img img{
     width: 100px;
     height: 100px;
     border-radius: 50%;
     margin: 0 auto;
	 display: block;

}
.recipe-link{
	margin: 1.4rem;
}
.recipe-link a{
	color: white;
	font-size: 1.2rem;
	font-weight: 700;
	transition: all 0.3s linear;
}
.recipe-link a:hover{
	opacity: 0.8;

}









@media screen and (min-width: 600px){
	.meal-search-box{
		width: 540px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (min-width: 768px){
	#meal{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		grid-gap: 2rem;
	}
	.meal-item{
		margin: 0;
	}
	.meal-details{
		width: 700px;
	}
	
}
@media screen and (min-width: 992px){
	#meal{
		grid-template-columns: repeat(3,1fr);
	}	
}
