
:root {
	--backgroundColor: #1E2680;
	--h1Color: #D4E210;
	--pColor: #D4E210;
	--menuColor: #D4E210;
	--menuColorBackground: #1E2680;
}





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

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

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

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

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

h1 {
	font-size: 2.75rem;
	font-family: 'AbrilFatface Bold', sans-serif;
	color: #65B741;
	transform: rotate(2deg);
}

p {
	line-height: 200%;
	font-size: .96rem;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

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

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

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

.nav {
	height: 3.5rem;
	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(--menuColorBackground, #FF5722);
		top: 0;
		right: -100%;
		width: 100%;
		transition: right .6s;
	  } 
}

.nav__list {
	padding: 3rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	box-shadow: 2px 2px 10px #65B741;
}

.nav__link_1_m1_v60 {
	color: var(--pColor, #ffffff);
	font-size: 1rem;
	transition: color .3s;
	font-family: 'AbrilFatface Bold', sans-serif;
}

.nav__link_1_m1_v60:hover {
	border: 2px solid #65B741;
}

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

.show-menu {
	right: 0;
}

.images_1_m1_v60 {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
}

.info__container_1_m1_v60 {
	display: grid;
	gap: 2rem;
}

.main__img_1_m1_v60 {
	transform: rotate(2deg);
}


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


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

	.main__img_1_m1_v60 {
		width: 400px;
	}

}
@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;
	}

	.header {
		background-color: var(--menuColorBackground, #FF5722);
	}

	.info__container_1_m1_v60 {
		grid-template-columns: repeat(2, 1fr);
		align-items: start;
	}


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