/** Fonts **/
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');

/** Global **/
* {
	color: black;
	background-color: white;
	font-family: 'IBM Plex Sans Arabic', sans-serif;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


/** Header **/
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 48px;
	font-weight: bold;
	padding: 40px;
}

.header a {
	text-decoration: none;
}

.header .logo {
	height: 48px;
	width: 48px;
}

/** footer **/
.footer {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px;
}

.footer p {
	background-color: white;
}

.footer a {
	text-decoration: none;
	font-weight: 500;
}

/** Recipes : Homepage **/
.recipes {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.dish {
	display: flex;
	flex-direction: column;
	margin: 40px;
	padding: 40px;
	background-color: #F5F5F5;
	width: 300px;
	gap: 15px;
}

.dish .recipe-img {
	width: 300px;
	height: 300px;
}

.dish h3,p {
	background-color: #F5F5F5;
	margin: 0;
	padding: 0;
}

.dish a {
	text-decoration: none;
	text-align: center;
}

.dish .button {
	background-color: black;
	color: white;
	font-size: 14px;
	border: 0 solid black;
	padding: 10px;
	width: 100px;
}

/** Single Recipe **/
.center-box {
	display: flex;
	justify-content: center;
	align-items: center;
}

.recipes-body {
	background-color: #F5F5F5;
	display: flex;
	margin: 0 60px;
	padding: 40px;
	gap: 40px;
	width: 1200px;
}

.big-recipe-img {
	width: 500px;
	height: 500px;
}

.img-box {
	background-color: #F5F5F5;
}

.ingredients, .preparation {
	background-color: #F5F5F5;
	min-width: 300px;
	display: flex;
	flex-direction: column;
}

.recipes-body .ingredients h2,h5
,.recipes-body .preparation h2,h5 {
	background-color: #F5F5F5;
}

.recipes-body .ingredients ul,ol
,.recipes-body .preparation ul,ol {
	background-color: #F5F5F5;
	margin: 0 20px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.recipes-body .ingredients li,
.recipes-body .preparation li {
	background-color: #F5F5F5;
}
