@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");
html {
	height: 100%;
	scroll-behavior: smooth;
	box-sizing: border-box;
	font-size: 62.5%;
}
html ::selection {
	color: #178d50;
	background: #000;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: inherit;
}

body {
	font-size: 1.8rem;
	font-weight: 400;
	font-family: "Montserrat", sans-serif;
}

a {
	text-decoration: none;
	display: inline-block;
}

ul,
li {
	list-style: none;
}

img {
	vertical-align: middle;
	width: 100%;
	height: auto;
}

.visually-hidden {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.container {
	max-width: 114rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0 1.5rem;
}
@media screen and (max-width: 1040px) {
	.container .container {
		padding: 0 3rem;
	}
}

.title {
	text-align: center;
	font-size: 4rem;
}
@media screen and (max-width: 573px) {
	.title {
		font-size: 3rem;
	}
}
@media screen and (max-width: 460px) {
	.title {
		font-size: 2rem;
	}
}

.btn {
	display: inline-block;
	padding: 1.4rem 2.1rem;
	color: #fff;
	border: none;
	background-color: #31d1fd;
	font-weight: 600;
	font-size: 1.6rem;
	text-align: center;
	border-radius: 10px;
	transition: all ease 0.3s;
}
@media screen and (max-width: 360px) {
	.btn {
		padding: 1.2rem 1.8rem;
		font-size: 1.3rem;
	}
}
.btn:hover {
	box-shadow: rgba(255, 255, 255, 0.5) 0px 3px 12px 0px;
}
.btn:active {
	transform: scale(0.95);
}

.header {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #282c34;
	padding: 2rem 0;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.header .container {
	display: flex;
	align-items: center;
}
@media screen and (max-width: 573px) {
	.header .container {
		padding: 0 3rem;
	}
}
.header__link {
	display: inline-block;
	font-size: 2rem;
	text-decoration: none;
	color: #31d1fd;
	font-weight: 600;
	transition: all ease 0.3s;
}
@media screen and (max-width: 395px) {
	.header__link {
		font-size: 1.3rem;
	}
}
.header__link:hover {
	opacity: 0.7;
}
.header__btn {
	margin-left: auto;
}

.hero {
	background: url(../assets/images/react-icon.png), url(../assets/icons/vue.png), #282c34;
	background-repeat: no-repeat;
	background-size: 65rem, 55rem;
	background-position: right -1rem bottom -26.5rem, left -1rem bottom -21.5rem;
	min-height: 65rem;
	background-blend-mode: difference;
	padding: 13rem 0;
}
@media screen and (max-width: 1040px) {
	.hero {
		background-size: 55rem, 45rem;
		background-position: right -1rem bottom -24.5rem, left -1rem bottom -18.5rem;
	}
}
@media screen and (max-width: 880px) {
	.hero {
		background-size: 17rem;
		background-position: center 400px, center 435px;
	}
}
@media screen and (max-width: 450px) {
	.hero {
		padding: 10rem 0;
		min-height: 45rem;
		background-size: 10rem;
		background-position: center 290px, center 305px;
	}
}
.hero__content {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	color: #fff;
	margin-top: 9rem;
}
@media screen and (max-width: 600px) {
	.hero__content {
		margin-top: 3rem;
	}
}
.hero__greeting-text {
	text-align: center;
	font-size: 2.5rem;
}
@media screen and (max-width: 600px) {
	.hero__greeting-text {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 450px) {
	.hero__greeting-text {
		font-size: 1.4rem;
	}
}
.hero__img {
	width: 6rem;
}
.hero__title {
	font-size: 7rem;
}
@media screen and (max-width: 880px) {
	.hero__title {
		font-size: 6rem;
	}
}
@media screen and (max-width: 450px) {
	.hero__title {
		font-size: 4rem;
	}
}
.hero__subtitle {
	text-transform: capitalize;
	font-size: 3rem;
	margin-top: 1rem;
}
@media screen and (max-width: 880px) {
	.hero__subtitle {
		font-size: 2.5rem;
	}
}
@media screen and (max-width: 600px) {
	.hero__subtitle {
		font-size: 2rem;
	}
}
@media screen and (max-width: 450px) {
	.hero__subtitle {
		font-size: 1.5rem;
	}
}

.about-me__title {
	color: #333;
}
.about-me__content {
	padding: 7rem 0;
	color: #333;
	text-align: center;
}
@media screen and (max-width: 450px) {
	.about-me__content {
		padding: 4rem 0;
	}
}
.about-me__subtitle {
	margin-top: 2rem;
	font-weight: 500;
	font-size: 2.3rem;
}
@media screen and (max-width: 450px) {
	.about-me__subtitle {
		font-size: 1.5rem;
		margin-top: 1.6rem;
	}
}

.portfolio {
	color: #333;
}
.portfolio__cards {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 4rem;
}
@media screen and (max-width: 1040px) {
	.portfolio__cards {
		justify-content: space-evenly;
	}
}
@media screen and (max-width: 450px) {
	.portfolio__cards {
		margin-top: 2rem;
	}
}

.card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
	margin-bottom: 5rem;
}
.card:nth-child(2n) {
	flex-direction: row-reverse;
}
@media screen and (max-width: 850px) {
	.card {
		flex-direction: column;
		gap: 2rem;
		margin-bottom: 6rem;
	}
	.card:nth-child(2n) {
		flex-direction: column;
	}
}
.card__site {
	max-width: 45rem;
	overflow: hidden;
	border-radius: 1rem;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.card__site-link {
	transform: scale(1.1);
	transition: all ease 0.3s;
}
.card__site-link:hover {
	transform: scale(1.15);
	filter: brightness(0.6);
}
.card__info {
	display: flex;
	gap: 1rem;
	flex-direction: column;
	align-items: flex-start;
}
@media screen and (max-width: 850px) {
	.card__info {
		gap: 0.5rem;
	}
}
.card__technologies {
	font-weight: 700;
	opacity: 0.8;
}
@media screen and (max-width: 850px) {
	.card__technologies {
		font-size: 1.6rem;
	}
}
.card__description {
	font-weight: 500;
}
@media screen and (max-width: 850px) {
	.card__description {
		font-size: 1.5rem;
	}
}
.card__code-link {
	font-weight: 700;
	text-align: center;
	color: #178d50;
	border-radius: 5px;
	transition: all ease 0.3s;
}
@media screen and (max-width: 850px) {
	.card__code-link {
		font-size: 1.5rem;
	}
}
.card__code-link svg {
	transition: all ease 0.3s;
	width: 15px;
	fill: #178d50;
	transform: translateY(2px) rotate(30deg);
}
.card__code-link:hover {
	opacity: 0.6;
}
.card__code-link:hover svg {
	transform: translateY(2px) rotate(90deg);
}

.socials-section {
	margin-top: 2rem;
	background-color: #f1f1f1;
	padding: 5rem 0;
}
@media screen and (max-width: 450px) {
	.socials-section {
		padding: 3rem 0;
	}
}
.socials__list {
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.socials__link {
	color: #222;
	font-size: 3.5rem;
	transition: all ease 0.3s;
}
.socials__link:hover {
	color: #31d1fd;
}
@media screen and (max-width: 573px) {
	.socials__link {
		font-size: 2.5rem;
	}
}

.footer {
	background-color: #333;
	color: #fff;
	padding: 5rem 0;
	text-align: center;
}
@media screen and (max-width: 450px) {
	.footer {
		padding: 3rem 0;
	}
}
@media screen and (max-width: 450px) {
	.footer__title {
		font-size: 1.4rem;
	}
}

.demo {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
}
.demo__link {
	flex-basis: 60rem;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	transition: all ease 0.3s;
	display: grid;
	place-items: center;
}
.demo__img {
	transform: scale(1.2);
}

.technologies {
	font-weight: 700;
	font-size: 2.2rem;
	margin-bottom: 1rem;
}

.description {
	font-weight: 500;
}

.card__demo {
	display: flex;
	align-items: center;
	gap: 3rem;
}

/*# sourceMappingURL=main.css.map */
