* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: rgb(0, 0, 0);
}

a {
	text-decoration: none;
	color: rgb(255, 255, 255);
	font-size: 24px;
	font-family: Calibri;
	font-weight: bold;
}

.container {
	opacity: 0;
	transition: opacity 5s ease;
	position: relative;
	display: flex;
	align-items: normal;
	flex-direction: column;
	background-color: rgba(19, 19, 18, 0.377);
	border-radius: 10px;
	z-index: 5;
	padding: 24px;
	box-shadow: 0 0 20px 5px rgb(0, 0, 0);
}

.container.visible {
	opacity: 1;
}

.nickname {
	align-items: center;
	padding-left: 25%;
	padding-right: 10%;
	font-size: 3.2vw;
	font-family: sans-serif;
	color: #ffffff;
}

.status {
	align-items: center;
	padding-left: 37%;
	padding-right: 10%;
	font-size: 1vw;
	font-family: sans-serif;
	color: #ffffff;
}

.about {
	display: flex;
	width: 100%;
}

.avatar {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-bottom: 24px;
	border: 15px;
	border-color: #ffffff;
}

.about li {
	display: flex;
	justify-content: center;
}

.about img {
	width: 256px;
	border-radius: 50%;
}

.about {
	width: 600px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
	overflow: none;
	display: table;
}

.links-anim {
	display: flex;
	width: 100%;
	justify-content: center;
	gap: 32px;
	margin-top: 2vw !important;
}

.forward a {
	position: relative;
}

.forward a:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	width: 0%;
	background: rgb(86, 84, 84, 1);
	border-radius: 12px;
	transition: all 0.4s ease;
}

.forward a:hover:before {
	width: 100%;
}

.forward a:before {
	width: 100%;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s ease;
}

.forward a:hover:before {
	transform: scaleX(1);
	transform-origin: left;
}

.area {
	background: #000000;
	background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
	width: 100%;
	height: 100vh;
}

.circles {
	filter: blur(10px);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.statusIndicator li {
	position: absolute;
	width: 60px;
	height: 60px;
	left: 350;
	top: 210;
	border-radius: 100%;
	box-shadow: 0 0 10px 5px rgb(0, 0, 0);
}

.circles li {
	position: absolute;
	display: block;
	list-style: none;
	width: 20px;
	height: 20px;
	background: rgba(190, 173, 24, 0.075);
	animation: animate 25s linear infinite;
	bottom: -150px;
}

.circles li:nth-child(1) {
	left: 25%;
	width: 80px;
	height: 80px;
	animation-delay: 0s;
}

.circles li:nth-child(2) {
	left: 10%;
	width: 20px;
	height: 20px;
	animation-delay: 2s;
	animation-duration: 12s;
}

.circles li:nth-child(3) {
	left: 70%;
	width: 20px;
	height: 20px;
	animation-delay: 4s;
}

.circles li:nth-child(4) {
	left: 40%;
	width: 60px;
	height: 60px;
	animation-delay: 0s;
	animation-duration: 18s;
}

.circles li:nth-child(5) {
	left: 65%;
	width: 20px;
	height: 20px;
	animation-delay: 0s;
}

.circles li:nth-child(6) {
	left: 75%;
	width: 110px;
	height: 110px;
	animation-delay: 3s;
}

.circles li:nth-child(7) {
	left: 35%;
	width: 150px;
	height: 150px;
	animation-delay: 7s;
}

.circles li:nth-child(8) {
	left: 50%;
	width: 25px;
	height: 25px;
	animation-delay: 15s;
	animation-duration: 45s;
}

.circles li:nth-child(9) {
	left: 20%;
	width: 15px;
	height: 15px;
	animation-delay: 2s;
	animation-duration: 35s;
}

.circles li:nth-child(10) {
	left: 85%;
	width: 150px;
	height: 150px;
	animation-delay: 0s;
	animation-duration: 11s;
}

@keyframes animate {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
		border-radius: 100%;
	}

	100% {
		transform: translateY(-1000px) rotate(720deg);
		opacity: 0;
		border-radius: 100%;
	}
}

.video-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 6;
}

video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
