.pre-container {
	font-family: Arial, sans-serif;
	background-color: #101010;
	color: #f0f0f0;
	display: flex;
	justify-content: center;
	align-items: center;
	/* height: 100vh; */
	margin: 0;
	text-align: center;
}
.container {
	background-color: #202020;
	/*      background-color: #101010;*/
	width: 100%;
	max-width: 600px;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}
.profile-image {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 3px solid #AA3FFF; /* Gold border */
	margin-bottom: 20px;
}
h1 {
	font-size: 28px;
	margin-bottom: 10px;
	color: #f0f0f0;
}
p {
	font-size: 16px;
	margin-bottom: 20px;
	color: #b3b3b3;
}
.link-button {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 90%;
	padding: 16px;
	margin: 12px 0;
	background-color: #101010; /* Same as background */
	color: #f0f0f0;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	border: 2px solid #AA3FFF; /* Gold border */
	border-radius: 8px;
	text-align: left;
	transition: background-color 0.3s, transform 0.2s, border-color 0.3s;
}
.link-button:hover {
	border-color: #A73FFF; /* Slightly darker gold on hover */
	transform: translateY(-3px);
}
.link-button img {
	width: 50px;
	height: 50px;
	margin-right: 15px;
	border-radius: 5px;
}
footer {
	margin-top: 20px;
	font-size: 12px;
	color: #b3b3b3;
}

