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

body {
	font-family: 'Inter', sans-serif;
	background-color: #EE95BB;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

#card {
	width: 100%;
	max-width: 991px;
	padding: 16px;
	object-fit: contain;
}

.buttons {
	display: none;
	gap: 16px;
	margin-bottom: 24px;
}

.btn {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 16px;
	border: none;
	border-radius: 8px;
	height: 48px;
	padding: 0 24px;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: background-color 0.2s ease;
}

.btn-more {
	background-color: #F84841;
	color: #fff;
}

.btn-more:hover {
	background-color: #d93d37;
}

.btn-linkedin {
	background-color: #0A66C2;
	color: #fff;
}

.btn-linkedin:hover {
	background-color: #084e96;
}

.btn-linkedin svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}
