html {
	font-size: 16px;
}

* {
	box-sizing: border-box;
}

body {
	font-family: 'Playfair Display', serif;
	color: #121212;
	background-color: #fff;
	margin: 0;
}

main {
	min-height: 100dvh;
    min-width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	display: flex;
}

.profile-photo {
	flex: 0 0 40%;
	height: 100vh;
	object-fit: cover;
}

/* section {
	background-color: #fff;
	padding: 2rem;
	border-radius: 1rem;
	backdrop-filter: blur(1rem);
	margin: 1rem auto 2rem auto;
} */

h1 {
	font-size: 2.5rem;
	line-height: 4rem;
	margin: 0;
	font-weight: 600;
	color: rgb(187, 7, 40);
}

.brief-intro {
	font-size: 0.8rem;
	line-height: 1.6rem;
	text-align: center;
}

h6 {
	margin: 0;
}

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

a {
	color: rgb(15, 89, 208);
}

.social-icons {
	display: flex;
	gap: 1.5rem;
	padding: 2rem 0 3rem 0;
}

.social-icons a {
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	transition: transform 300ms ease-in-out;
}

.social-icons a:hover {
	transform: scale(1.2);
}

.social-icons a svg {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 1280px) {

	main {
		flex-direction: column;
	}

	.profile-photo	{
		max-height: 50vh;
		width: 100vw;
		object-position: 50% 30%;
	}

	article {
		padding: 2rem;
	}

}

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

	article {
		flex: 1 1 60%;
		padding: 3rem;
		max-height: 100vh;
		overflow-y: scroll;
	}
}

