* {
	margin: 0%;
	padding: 0%;
}
main {
	height: 100vh;
	width: 100%;
}
section {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100vh;
	background-color: #010100;
}
.outer {
	width: 425px;
	height: 300px;
	border-radius: 10px;
	padding: 1px;
	background: radial-gradient(circle 230px at 0% 0%, #ffffff, #0c0d0d);
	position: relative;
}

.dot {
	width: 5px;
	aspect-ratio: 1;
	position: absolute;
	background-color: #fff;
	box-shadow: 0 0 10px #ffffff;
	border-radius: 100px;
	z-index: 2;
	right: 10%;
	top: 10%;
	animation: moveDot 6s linear infinite;
}
.piyush {
	background: linear-gradient(90deg, #ff9800, #ff5e62, #fbc2eb, #a18cd1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	font-weight: bold;
	font-size: 2rem; /* Adjust as needed */
	letter-spacing: 2px;
}

@keyframes moveDot {
	0%,
	100% {
		top: 10%;
		right: 10%;
	}
	25% {
		top: 10%;
		right: calc(100% - 35px);
	}
	50% {
		top: calc(100% - 30px);
		right: calc(100% - 35px);
	}
	75% {
		top: calc(100% - 30px);
		right: 10%;
	}
}

.card {
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: 9px;
	border: solid 1px #202222;
	background-size: 20px 20px;
	background: radial-gradient(circle 280px at 0% 0%, #444444, #0c0d0d);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-direction: column;
	color: #fff;
	flex-direction: column;
}
.span {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-family: "Edu NSW ACT Cursive", cursive, sans-serif;
	color: white;
}
.ray {
	width: 220px;
	height: 45px;
	border-radius: 100px;
	position: absolute;
	background-color: #c7c7c7;
	opacity: 0.4;
	box-shadow: 0 0 50px #fff;
	filter: blur(10px);
	transform-origin: 10%;
	top: 0%;
	left: 0;
	transform: rotate(40deg);
}
.date {
	font-size: 3vh;
	font-weight: 600;
	background: linear-gradient(90deg, #1fffff 0%, #77ff00 100%, #ff6a00 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.card .text {
	font-weight: bolder;
	font-size: 3.5rem;
	background: linear-gradient(45deg, #000000 4%, #fff, #000);
	background-clip: text;
	color: transparent;
}

.line {
	width: 100%;
	height: 1px;
	position: absolute;
	background-color: #2c2c2c;
}
.topl {
	top: 10%;
	background: linear-gradient(90deg, #888888 30%, #1d1f1f 70%);
}
.bottoml {
	bottom: 10%;
}
.leftl {
	left: 7.6%;
	width: 1px;
	height: 100%;
	background: linear-gradient(180deg, #747474 30%, #222424 70%);
}
.rightl {
	right: 10%;
	width: 1px;
	height: 100%;
}
