* {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	background: black;
}

.content {
	display: flex;
	position: relative;
	height: 95vh;
	background-image: linear-gradient(to bottom, black, rgba(0, 242, 255, 1), black);
	align-items: center;
	justify-content: center;
}

.content-box {
	display: flex;
	flex-direction: column;
	min-height: 60vmin;
	max-height: 95vh%;
	max-width: 1200px;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
}

#top-box {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	max-width: 1200px;
	margin-top: 0px;
}

#top-p {
	z-index: 99;
	color: white;
	font-size: clamp(60px, calc(18px + 8vw), 16rem);
	font-family: "Share Tech Mono", monospace;
	text-shadow: 0vw 1vmin 1vmin rgb(10, 20, 20);
}

#middle-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin-bottom: 4vh;
	margin-top: 5vh;
}

#middle-p{
	line-height: 60%;
	z-index: 99;
	color: rgba(0, 178, 228, 1);
	text-shadow:
		2px 2px 0px white,
		-2px -2px 0px white,
		-2px -2px 0 white,
		2px -2px 0 white,
		0vw 1vmin 1vmin rgb(10, 20, 20);
	font-size: clamp(60px, calc(18px + 8vw), 16rem);
	font-family: "Kalam", cursive;
}

#bottom-box {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1200px;
}

#bottom-p {
	color: white;
	font-size: clamp(60px, calc(18px + 8vw), 16rem);
	font-family: "Itim", cursive;
	line-height: 97%;
	z-index: 99;
	text-shadow: 0vw 1vmin 1vmin rgb(10, 20, 20);
}

button {
	z-index: 100;
	background-image: linear-gradient(to top, #0076a8, #00f2ff);
	height: 60px;
	width: 200px;
	margin: 15px 0px 15px 0px;
	color: white;
	//font-size: 30px;
	font-weight: bold;
	font-family: "Share Tech Mono", monospace;
	font-size: clamp(30px, calc(12px + 1vw), 16rem);
	border: none;
	border-radius: 15px;
	transition-duration: 0.5s;
	box-shadow: 0vw 1vmin 1vmin rgb(10, 20, 20);
}

button:hover{
	background-image: none;
	background: none;
	border: 1.5px solid #00f2ff;
}

.footer {
	height: 5vh;
	background-color: #333;
	background: black;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5em;
	font-family: "Share Tech Mono", monospace;
}

.particles-container {
	position: absolute;
	width: 100%;
	height: 100%;
}

#particles-js-1, #particles-js-2 {
	display: flex;
	position: absolute;
	width: 100%;
}

#particles-js-1 {
	height: 50%;
	top: 0;
	text-align: center;
}

#particles-js-2 {
	height: 50%;
	bottom: 0;
	
}