@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
	--primary: #1112e0;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body {
	font-family: "Inter", sans-serif;
	line-height: 1.5;
}
body {
	background: #f3f3f3;
}
h1,
h2,
h3,
h4 {
	font-weight: 400;
	font-style: normal;
}
a {
	color: black;
	text-decoration: none;
}

.container {
	max-width: 1291px;
}
.large-container {
	max-width: 1440px;
}
.container,
.large-container {
	margin: 0 auto;
}

section .subtitle {
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 10px;
}
section .title {
	font-size: 64px;
	line-height: 64px;
	color: var(--primary);
}

.hero {
	margin-bottom: 75px;
}
.hero h1 {
	font-size: 195px;
	line-height: 160px;
	padding-bottom: 53px;
	text-align: center;
}
.hero p {
	font-size: 24px;
	text-align: center;
}

.about {
	position: relative;
	padding-bottom: 150px;
}
.about .header {
	margin-bottom: 40px;
}
.about .header .title {
	max-width: 742px;
	margin-bottom: 40px;
	line-height: 64px;
}
.about .header .description {
	max-width: 742px;
	font-size: 24px;
}
.about .content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 83px;
	position: relative;
}
.about .flower-image-wrapper {
	position: absolute;
	left: 0;
	top: 390px;
}
.about .land-flower-image-wrapper {
	position: absolute;
	right: 0;
	top: 20px;
}
.about .content .profile-image-wrapper {
	transform: translateY(-140px);
}

.work-trail {
	position: relative;
	padding-bottom: 95px;
}
.work-trail .header {
	margin-bottom: 37px;
}
.work-trail .center-description {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 38px;
}
.work-trail .center-description p {
	max-width: 300px;
}
.work-trail .project-list {
	display: grid;
	gap: 92px;
}
.work-trail .grass-image-wrapper {
	position: absolute;
	right: 0;
	top: -32px;
}

.project-card {
	display: flex;
	gap: 97px;
}
.project-card .title {
	font-size: 32px;
	color: #000;
}
.project-card .description {
	max-width: 235px;
}
.project-card .credits {
	font-size: 12px;
	justify-self: end;
}
.project-card .year {
	font-size: 12px;
	position: absolute;
	left: -4px;
	top: 8px;
	transform: rotate(90deg);
}
.project-card .content-wrapper {
	width: 40%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.project-card .content {
	display: flex;
	flex-direction: column;
	gap: 66px;
}
.project-card .description-wrapper {
	display: flex;
	justify-content: center;
	position: relative;
}
.project-card .image-wrapper {
	width: 60%;
	background: #d9d9d9;
}
.project-card .image-wrapper img {
	width: 100%;
	height: 100%;
}

footer h1 {
	font-size: 195px;
	text-align: center;
}
footer .container {
	padding: 0 100px;
}
footer .social-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 450px;
	margin-bottom: 110px;
}
footer a {
	position: relative;
	width: fit-content;
}
footer a:hover {
	color: var(--primary);
	transition: color 0.3s ease;
}
footer a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	transition: width 0.3s ease;
}
footer a:hover::after {
	width: 100%;
	height: 2px;
	background: var(--primary);
}
footer .copyright {
	padding-bottom: 50px;
}
