
:root {
	--backgroundColor: #FAB0E4;
	--h1Color: #6519B0;
	--pColor: #6519B0;
	--menuColor: #6519B0;
	--menuColorBackground: #FAB0E4;
}



@font-face {
	font-family: 'MPLUS1p';
	src: url(./MPLUS1p-Regular.ttf);
}

@font-face {
	font-family: 'MPLUS1p Bold';
	src: url(./MPLUS1p-Bold.ttf);
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	scroll-behavior: smooth;
	height: 100%;
}

body {
	font-family: 'MPLUS1p', sans-serif;
	background-color: var(--backgroundColor, #FF5722);
	color: var(--pColor, #ffffff);
}

h1 {
	font-size: 3.078rem;
	font-family: 'MPLUS1p Bold', sans-serif;
	color: var(--backgroundColor, #FF5722);
	background-color: var(--pColor, #ffffff);
	border: 2px solid #65B741;
}

p {
	line-height: 2;
	font-size: 1.078rem;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

.container {
	max-width: 1240px;
	margin-right: 1.5rem;
	margin-left: 1.5rem;
	display: grid;
	gap: 1.78rem;
	text-align: center;
}

.section {
	padding: 4.78rem 0 1rem;
}

.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 78;
	background-color: var(--menuColor, #ffffff);
}

.nav {
	height: 3.78rem;
	display: flex;
	align-items: center;
	justify-content: end;
}

.nav__toggle {
	cursor: pointer;
}

@media screen and (max-width: 1023px) {
	.nav__menu {
		position: fixed;
		background-color: var(--menuColor, #ffffff);
		top: 0;
		right: -100%;
		width: 100%;
		transition: right .8s;
	  } 
}

.nav__list {
	padding: 4.78rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .78rem;
}

.nav__link_1_m1_v78 {
	color: var(--menuColorBackground, #FF5722);
	font-size: 1.078rem;
	transition: color .8s;
	font-family: 'MPLUS1p Bold', sans-serif;
	border-radius: .25rem;
	padding: .25rem;
}

.nav__link_1_m1_v78:hover {
	border-bottom: 8px solid var(--menuColorBackground, #FF5722);
	box-shadow: 0px 0px 8px var(--menuColorBackground, #ffffff);
}

.nav__close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	cursor: pointer;
}

.show-menu {
	right: 0;
}

.images_1_m1_v78 {
	display: flex;
	flex-wrap: wrap;
	gap: 2.78rem;
	justify-content: center;
}

.main__img_1_m1_v78 {
	border: 8px solid #65B741;
}

.main__img_1_m1_v78:hover {
	box-shadow: 0px 0px 8px #65B741;
}

.colored__text_1_m1_v78 {
	color: #65B741;
	font-family: 'MPLUS1p Bold', sans-serif;
}


@media screen and(max-width: 340px) {
	.container {
		margin-left: 1rem;
		margin-right: 1rem;
	}


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

	.main__img_1_m1_v78 {
		width: 380px;
	}

}
@media screen and (min-width: 1023px) {
	.nav__menu {
		width: initial;
		margin: 0 auto;
	}

	.nav__toggle, 
	.nav__close {
		display: none;
	}

	.nav__list {
		flex-direction: row;
		column-gap: 1rem;
		box-shadow: none;
	}

}
@media screen and (min-width: 1150px) {
	.container {
		margin-left: auto;
		margin-right: auto;
	}
}




