:root {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	--link-color: #3D7AB8;
}

body {
	display: flex;
	min-width: 100vw;
	min-height: 100vh;
	margin: 0;
	background: #ffead2;
}

body > .container {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

img {
	width: auto;
}

a {
	position: relative;
	color: var(--link-color);
	font-weight: normal;
	/* text-decoration: none; */
}

/* a::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--link-color);
} */

.profile {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.card {
	min-width: 30em;
	margin: auto;
	background: #FFF;
	padding: 0 1rem;
	text-align: center;
	box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
	border-radius: 0.5em;
	font-weight: 300;
}
