body {
    margin: 0;
	background-color: hsl(0, 0%, 8%);
}
.card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 25%;
	background-color: hsl(0, 0%, 20%);
	margin: 10% auto;
	padding: 20px;
	border-radius: 10px;
	
}
.card-image {
	width: 80px;
	height: 80px;
	border-radius: 80%;
	overflow: hidden;  
	display: flex;
	justify-content: center;
	align-items: center;
}
.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
h1 {
	font-family: "Inter";
	font-weight: 600;
	color: #FFFFFF;
	text-align: center;
	font-size: 22px;
	margin-top: 22px;
	margin-bottom: 0;
}
h2 {
	font-family: "Inter";
	font-weight: 600;
	color: hsl(75, 94%, 57%);
	text-align: center;
	font-size: 12px;
	margin-top: 8px;
	margin-bottom: 0;
}
p {
	color: #ECECEC;
	font-family: "Inter";
	text-align: center;
	font-size: 12px;
	margin-top: 22px;
	margin-bottom: 0;
}
.card-buttons {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	max-width: 250px;
}
a:link, a:visited {
	font-family: "Inter";
	text-align: center;
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	color: #ECECEC;
	background-color: #6A6A6A;
	border: none;
	border-radius: 8px;
	margin-bottom: 12px;
	padding: 10px;
    min-height: 16px; 
	min-width: 250px;
}
a:hover {
	background-color: hsl(75, 94%, 57%);
	transition: 0.5s;
	color: hsl(0, 0%, 8%);
}
	