/*Variables*/
:root {
	--primary-color: #e3e3e3;
	--black-1-color: #1e1e1e;
	--green-1-color: #c3ff8a;
	--green-hover-color: #7ED22F;
}

/* all resets */

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

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

/*global format*/
body {
	background: url(./img/ellipse.svg) no-repeat, url(./img/lines.svg) bottom right no-repeat, linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(30,30,30,1) 100%);
	min-height: 100vh;
	font-family: 'Fira Sans', sans-serif;
}

.container {
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 82px;
}

/*Header*/
header {
	padding: 2px 0;
	background: linear-gradient(90deg, #D7FFD0, #9ADD80, #5BC730);
	background-size: 400% 400%;
	animation: gradientShift 15s ease infinite;
	text-align: center;
	font-family: "Oswald";
	font-size: 24px;
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

/*Main content*/
main {
	color: var(--primary-color);
	padding-top: 40px;
}

main .flex {
	display: flex;
	justify-content: space-between;
	gap: 100px;

}


/*Side left*/
.l-side {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.l-side h1 {
	font-family: "Oswald";
	font-size: 50px;
	margin-bottom: 70px;
}

.l-side p {
	max-width: 60ch;
	font-size: 22px;
}


.l-side .btn-portf {
	margin-top: auto;
	align-self: center;
	background: var(--green-1-color);
	color: var(--black-1-color);
	font-family: "Oswald";
	text-transform: uppercase;
	font-weight: 500;
	padding: 15px 10px;
	display: inline-block;
	border-radius: 5px;
	transition: 0.5s;
}

.l-side .btn-portf:hover {
	background: var(--green-hover-color);
	color: #fff;
}

/*Side right*/
 .r-side img, .r-side svg {
	margin-top: 80px;
}

.r-side ul {
	margin-top: auto;
	display: flex;
	justify-content: space-around;
}

svg {
	width: 54px;
	height: auto;
	fill: var(--green-1-color);
	transition: 0.5s;
}

svg:hover {
	fill: var(--green-hover-color);
}

@media (width <= 1100px) {
	header {
		font-size: 20px;
	}

	body {
		background: url(./img/tablet-icon-principal.png)top+50px center no-repeat, url(./img/tabletEllipse.svg) bottom left no-repeat, url(./img/lines.svg) bottom right no-repeat, linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(30,30,30,1) 100%);
		min-height: 100vh;
		font-family: 'Fira Sans', sans-serif;
	}

	.container {
		padding: 0 60px;
	}

	main .flex {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}

	.l-side h1 {
		font-size: 43px;
		margin-bottom: 35px;
	}

	.l-side p {
	max-width: 60ch;
	}

	.l-side .btn-portf {
	margin-top: initial;
	margin: 80px 0;
}

	.r-side .icon-principal {
		display: none;
	}

	.r-side ul {
		gap: 42px;
	}

	.r-side img {
	margin-top: 0;
}
}


@media (width <= 750px) {
	body {
		background: url(./img/phone-icon-principal.png)top+50px center no-repeat, url(./img/phoneEllipse.svg) bottom left no-repeat, url(./img/lines.svg) bottom right no-repeat, linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(30,30,30,1) 100%);
		min-height: 100vh;
		font-family: 'Fira Sans', sans-serif;
	}


	header {
		font-size: 16px;
	}

	.container {
		padding: 0 30px;
	}


	.l-side h1 {
		font-size: 25px;
		margin-bottom: 20px;
	}

	.l-side p {
		align-self: center;
		font-size: 14px;
		max-width: 58ch;
	}

	.l-side .btn-portf {
		margin-top: initial;
		margin: 40px 0;
	}

	.r-side ul {
		flex-direction: column;
	}

	.r-side ul img {
		width: 70px;
	}

}

 