* {
	margin: 0;
    padding: 0;
    color: #ff28bb;
    font-family: "Arima", system-ui;
}

html {
    height: 100%;
}

body {
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content {
    background: #000000;
    height: 610px;
    width: 400px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

#content::before {
	content: '';
	background: #ff28bb;
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: -1;
	padding: 5px;
	border-radius: 30px;
	filter: blur(1rem);
	top: 50%;
	left: 50%;
	translate: -50% -50%;
}

#content::after {
	content: '';
	background: #ff28bb;
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: -1;
	padding: 5px;
	border-radius: 30px;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
}

#content img {
	height: 130px;
	width: 130px;
	border-radius: 90px;
	margin-top: 30px;
}

#content h2 {
    margin-top: 20px;
}

#content h3 {
	margin-top: 30px;
}

#content li {
	list-style-type: none;
	text-align: center;
}