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

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background: #000000;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container {
	background: white;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	max-width: 600px;
	width: 90%;
	padding: 40px;
	text-align: center;
}

header h1 {
	color: #000000;
	margin-bottom: 30px;
	font-size: 2.5em;
}

.profile-section {
	margin: 30px 0;
}

.profile-image {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #000000;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.links {
	margin: 40px 0;
}

.links h2 {
	color: #000000;
	margin-bottom: 20px;
	font-size: 1.8em;
}

.social-links {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.link-button {
	font-size: 2em;
	display: inline-block;
	padding: 12px 30px;
	background: #000000;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	font-size: 1.1em;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.linkedin-btn {
	background: #0077b5;
}

.linkedin-btn:hover {
	box-shadow: 0 6px 20px rgba(0, 119, 181, 0.6);
}

.link-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 600px) {
	.container {
		padding: 30px 20px;
	}

	header h1 {
		font-size: 2em;
	}

	.profile-image {
		width: 150px;
		height: 150px;
	}

	.social-links {
		flex-direction: column;
	}

	.link-button {
		width: 100%;
	}
}