body {
	background-color: var(--seasalt);
	color: var(--night);
	min-height: 100dvh;
	overflow-x: hidden;
}

main {
	position: relative;
	max-width: 480px;
	margin: 0 auto;
	min-height: 100dvh;
	padding: 80px 32px 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	box-sizing: border-box;
}

.profile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
}

.profile .avatar {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	object-fit: cover;
}

.profile h1 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--night);
}

.profile span {
	font-size: 1rem;
	color: var(--mocha);
}

.links {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.group-name {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--mocha);
	margin-bottom: 2px;
}

.link {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	padding: 14px 20px;
	border-radius: 999px;
	background-color: var(--linen);
	color: var(--night);
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.link svg {
	width: 18px;
	height: 18px;
	color: currentColor;
}

.link:hover {
	background-color: var(--night);
	color: var(--seasalt);
}

.link-primary {
	background-color: var(--tiber);
	color: var(--seasalt);
}

.link-primary:hover {
	background-color: var(--night);
	color: var(--seasalt);
}

.wordmark {
	margin-top: auto;
	padding-top: 32px;
}

.wordmark img {
	height: 24px;
	opacity: 0.7;
	transition: opacity 0.25s ease;
}

.wordmark:hover img {
	opacity: 1;
}
