@import url('fonts.css');

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

body {
	font-family: 'IBM Plex Sans', sans-serif;
	background-color: #ffffff;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.card {
	background: white;
	padding: 60px 50px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	text-align: center;
	max-width: 400px;
	width: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.photo {
	margin-bottom: 30px;
}

.photo img {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #c41e3a;
}

h1 {
	font-size: 32px;
	font-weight: 600;
	color: #2d2d2d;
	margin-bottom: 8px;
}

.subtitle {
	font-size: 16px;
	color: #757575;
	font-weight: 300;
	margin-bottom: 30px;
}

.link {
	display: inline-block;
	padding: 12px 28px;
	background: #2d2d2d;
	color: white;
	text-decoration: none;
	font-size: 15px;
	font-weight: 400;
	border-radius: 2px;
	transition: background-color 0.3s ease;
}

.link:hover {
	background: #c41e3a;
}

@media (max-width: 480px) {
	.card {
		padding: 40px 30px;
	}
	h1 {
		font-size: 26px;
	}
}
