@charset "UTF-8";
body {
	margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #DBD9D0;
}

body a {
	text-decoration: none;
}

.Meal-Summary {
	overflow: hidden;
}

.Menu {
	display: flex;
	align-content: space-between;
	justify-content: space-between;
	margin: 25px;
}

.backbtn img {
	width: 25px;
}

.Back button {
	text-decoration: none;
	border: none;
	background-color: transparent;
	transition: 0.3s;
	cursor: pointer;
}

.three-dots img {
	width: 25px;
}

.Today {
	margin: 25px;
}

.Today h1 {
	font-size: 30px;
	color: #D86B32;
}

.Meals {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 20px;
	margin: 25px;
	margin-top: 50px;
	height: 700px;
}

.Meals h1 {
	font-size: 25px;
	color: #2B2B2B;
}

.Meals p1 {
	font-size: 15px;
	color: #2B2B2B;
}

.Meals p2 {
	font-size: 12px;
	color: #2B2B2B;
}

.Meals p3 {
	font-size: 12px;
	color: lightgray;
}

.Meal-Images img {
	border-radius: 100%;
	overflow: hidden;
	width: 120px;
	height: 120px;
}

.Meal-Images {
	width: 100%;
	align-content: center;
}

.Breakfast {
	background-color: white;
	border-radius: 20px;
	overflow: hidden;
	padding: 3px 20px;
	box-shadow: 2px 2px 8px 3px rgba(0, 0, 0, 0.2);
	text-align: center;
}

.Lunch {
	background-color: white;
	border-radius: 20px;
	overflow: hidden;
	padding: 3px 20px;
	box-shadow: 2px 2px 8px 3px rgba(0, 0, 0, 0.2);
	text-align: center;
}

.Dinner {
	background-color: white;
	border-radius: 20px;
	overflow: hidden;
	padding: 3px 20px;
	box-shadow: 2px 2px 8px 3px rgba(0, 0, 0, 0.2);
	text-align: center;
}

.Snacks {
	background-color: white;
	border-radius: 20px;
	overflow: hidden;
	padding: 3px 20px;
	box-shadow: 2px 2px 8px 3px rgba(0, 0, 0, 0.2);
	text-align: center;
}

.next-button {
	overflow: hidden;
	height: 50px;
	width: 50px;
	border-radius: 100%;
	position: relative;
	border: none;
	align-content: center;
	justify-content: center;
	cursor: pointer;
	background-color: #D86B32;
}

.next-button img {
	width: 35%;
	height: auto;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 35%;
	top: 35%;
}

.next-button:hover,
.next-button:active {
	background-color: orange;
}

.Next {
	bottom: 0;
	margin-top: 5px;
}

.Next-Lunch {
	bottom: 0;
	margin-top: 25px;
}