/*
COPYRIGHT BEDHEAD.TECH
v2 2024-03-24
*/
body {
	position: relative;
	height: 100vh;
	margin: 0;
	padding: 0;
	background-color: #0F0C47;
	overflow: hidden;
	color: #fbe7d0;
	font-family: monospace;
}
#mainbox {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
img {
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	width: 50%
}
#linkbox {
	display: flex;
	justify-content: space-between;
	width: 60%; /* Or any desired width */
	margin-left: auto;
	margin-right: auto;
	margin-top: 4rem;
	margin-bottom: 8rem;
}
#linkbox * {
	flex: 1;
	text-align: center; /* If you want the text centered within each span */
}
a {
	text-decoration: underline;
	text-decoration-style: dotted;
	color: inherit;
}
a:hover {
	text-decoration-style: solid;
}
@media only screen and (max-width: 700px) {
	img {
		width: 100%;
	}
	#linkbox {
		width: 100%;
		flex-direction: column;
		margin-top: 2rem;
		margin-bottom: 4rem;
		gap: 1rem;
	}
	#mainbox {
		width: 80%;
	}
}