/* Reset some default values */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: #180B19; /* Dark background similar to your screenshot */
	color: #E5E5E5;
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

/* Responsive layout */
.profile {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.profile-image {
	perspective: 800px;
	transition: transform 0.5s;
}

.profile-image img {
	width: 220px;
	height: auto;
	margin-bottom: 1.5rem;
}

.profile-image,
.signature-image {
	perspective: 800px;
	display: inline-block; /* important to make transform work */
}
.signature-image img {
	width: 100%;
	max-width: 600px; /* or whatever max size you prefer */
	height: auto;
	display: block;
	margin: 0 auto; /* center it horizontally */
}

.bio {
	font-size: 1rem;
	max-width: 600px;
	margin-bottom: 2rem;
}

.links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

.button {
	background-color: #3B3B3B;
	color: #FFFFFF;
	text-decoration: none;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	transition: background 0.3s ease;
}

.button:hover {
	background-color: #FF5C33;
	color: #fff;
}

/* Responsive tweaks for larger screens */
@media (min-width: 768px) {
	.profile {
		flex-direction: row;
		text-align: left;
	}

	.profile-image {
		margin-right: 3rem;
	}
}