@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}

:root {
	--green: #c5f82a;
	--white: #ffffff;
	--grey-700: #333333;
	--grey-800: #1f1f1f;
	--grey-900: #141414;
}

body {
	background: var(--grey-900);
	font-family: Inter;
	color: var(--white);
}

h1 {
	font-size: 1.4rem;
	padding: 0px 0px 5px 0px;
}

h2 {
	color: var(--green);
	font-size: 0.8rem;
	padding: 0px 0px 5px 0px;
}

q {
	font-size: 0.8rem;
	padding: 1rem;
}

body {
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.card-container {
	background: var(--grey-800);
	border-radius: 0.6rem;
	text-align: center;
	width: fit-content;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
	padding-bottom: 30px;
}

img {
	width: 80px;
	height: auto;
	border-radius: 50%;
	margin: 1.8rem;
}

.social-link-button {
	background: var(--grey-700);
	color: var(--white);
	border: none;
	text-align: center;
	font-weight: 700;
	width: 260px;
	height: 40px;
	border-radius: 0.6rem;
	margin: 4px 30px 4px 30px;
}

.social-link-button:hover {
	background: var(--green);
	color: var(--grey-900);
	cursor: pointer;
}

footer {
	margin-top: 30px;
}

.attribution {
	color: var(--green);
	font-size: 11px;
	text-align: center;
}
.attribution a {
	color: var(--green);
	text-decoration: none;
	font-weight: 700;
}

.attribution a:hover {
	color: var(--white);
}
