body {
	margin: 0;
	padding: 0;
}

.container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	text-align: center;
	color: #ffffff;
}

.profile {
	display: inline-block;
	padding: 20px;
	background-color: rgba(213, 32, 205, 0.12);
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.profile-picture {
	width: 200px;
	height: 200px;
	border-radius: 60%;
	margin: 0 auto 20px auto;
	overflow: hidden;
	position: relative;
}

.profile-picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

h1 {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 20px;
}

p {
	font-size: 24px;
	line-height: 1.5;
}

.social-icons {
	margin-top: 30px;
}

.social-icons a {
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 10px;
	background: #fff;
	color: #333;
	font-size: 20px;
	text-align: center;
	line-height: 50px;
	transition: all 0.3s ease;
}

.social-icons a:hover {
	transform: translateY(-5px);
	background: #333;
	color: #fff;
}

.gradient-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(to bottom, #FFC3A0 0%, #FF80ED 100%);
	animation: animateGradient 10s ease-in-out infinite alternate;
}

@keyframes animateGradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
