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

html,
body {
	background-color: #102122;
	display: flex;
	margin: 20px auto;
	justify-content: center;
	font-family: "Manrope", arial, sans-serif;
	text-rendering: optimizeLegibility;
}

.clearfix { zoom: 1; }
.clearfix:after { 
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}

.card {
	max-width: 120vh;
	margin: 0 auto;
	background-color: #262626;
	display: flex;
	border-radius: 30px;
	height: 89vh;
	width: 130vh;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.profile {
	display: flex;
	flex-direction: column;
	margin: 30px auto;
	justify-content: center;
	align-items: center;
}

.avatar {
	border-radius: 50%;
	object-fit: cover;
	object-position: center 20%;
	height: 200px;
	width: 200px;
	border: 5px solid #08b0c8;
}

.profile-info {
	margin-top: 30px;
}

.card h1, .description {
	text-align: center;
	margin-top: -10px;
}

.card h1 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.description {
	color: #08b0c8;
	font-size: 20px;
}

.social-links {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 0;
	justify-content: center;
	align-items: center;
}

ul {
	list-style-type: none;
}

.social-btn {
	background-color: #3c3c3c;
	display: flex;
	border-radius: 30px;
	height: 6vh;
	max-width: 500px;
	width: 350px;
	text-decoration: none;
	object-fit: contain;
	transition: background-color 0.5s,transform 0.3s;
	align-items: center;
	justify-content: center;
}

.social-btn:hover {
	transform: scale(1.1);
	background-color: #21abbd;
}

.social-contents {
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.social-img {
	height: 100%;
}

.social-text {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
}

.footer {
	object-fit: cover;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	color: #fff;
	font-size: 12px;
}