@import url("https://fonts.googleapis.com/css2?family=Inter");

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

body {
	background-color: #0369a1;
	font-family: "Inter", Arial, Helvetica, sans-serif;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.profileCard {
	background-color: white;
	width: 20em;
	border-radius: 1em;
	overflow: hidden;
	margin: 1em;
	box-shadow: 20px #00000026;
}

.banner {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
}

.pfp {
	width: 5em;
	height: 5em;
	border-radius: 50%;
	border: 2px solid white;
	position: relative;
	top: -2.5em;
}

.name {
	font-weight: 700;
	font-size: 1.25em;
	margin-top: -1em;
}

.location {
	color: #aaa2a2;
}

.bio {
	margin: 1.5em 1em;
}

.link {
	text-decoration: none;
	color: black;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #e0f2fe;
	transition: 0.3s;
	border-radius: 1em;
	padding: 1em;
	margin: 1em;

	&:hover {
		background-color: #cbdbe6;
	}

	img {
		width: 1.5em;
		height: 1.5em;
		margin: 0 1em 0 0;
	}
}