@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 {
	--Green: hsl(75, 94%, 57%);
	--White: hsl(0, 0%, 100%);
	--Grey-700: hsl(0, 0%, 20%);
	--Grey-800: hsl(0, 0%, 12%);
	--Gray-900: hsl(0, 0%, 8%);
	--Inter: 'Inter', sans-serif;
}

* {
	margin: 0;
	padding: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

ul {
	list-style-type: none;
}

a,
a:link,
a:visited {
	text-decoration: none;
	color: inherit;
}

a:hover {
	text-decoration: none;
}

h2 {
	font-size: inherit;
	font-weight: inherit;
}

img {
	vertical-align: top;
}

img,
svg {
	max-width: 100%;
	height: auto;
}

body {
	background-color: var(--Gray-900);
	font-family: var(--Inter);
	color: var(--White);
}

/* ================= */

.profile {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 0 15px;
}

.profile__wrapper {
	max-width: 380px;
	background-color: var(--Grey-800);
	padding: 2.5rem;
	border-radius: 10px;
}

.profile__description {
	margin-bottom: 1.5rem;
}

.profile__img {
	text-align: center;
	margin-bottom: 1.5rem;
}

.profile__avatar {
	width: 64px;
	height: 64px;
	overflow: hidden;
	border-radius: 50%;
}

.profile__content {
	text-align: center;
}

.profile__title {
	font-weight: 700;
	font-size: 1.6rem;
	margin-bottom: 0.75rem;
}

.profile__settlement {
	margin-bottom: 1.5rem;
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--Green);
}

.profile__skillset {
	font-size: 0.75rem;
}

.profile-social__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: center;
}

.profile-social__link {
	min-width: 257px;
	background-color: var(--Grey-700);
	border-radius: 4px;
	padding: 0.75rem 0;
	font-size: 14px;
	transition: all 0.3s ease;
}

.profile-social__link:hover {
	background-color: var(--Green);
	color: var(--Grey-800);
}

.profile-social__link.active {
	background-color: var(--Green);
	color: var(--Grey-800);
}
