:root {
	--color: rgb(28, 231, 28)
}


html,
body {
	margin: 0;
}

body {
	font-family: Inter, monospace;
	background-color: rgb(69, 64, 73);
	color: var(--color);
	text-align: center;
	height: 100vh;
}

.page {
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

main {
	flex: 1;
}

.box-container h2 {
	text-align: left;
}

.box {
	max-width: fit-content;
	border-radius: 25px;
	padding: 10px;
	border: 1px solid var(--color);
	line-height: 250%;
	font-size: clamp(12px, 20px, 40px);
}

footer {
	width: 100%;
}

.footer-links {
	font-size: clamp(12px, 20px, 40px);
	list-style: none;
	background-color: black;
	margin: 0;
	padding: 10px;
	display: flex;
	justify-content: space-around;

}



h1 {
	margin-bottom: 0;
}

h2 {
	margin-bottom: 16px;
}

a:not(.btn) {
	color: inherit;
	text-decoration-style: dotted;
	text-underline-offset: 0.2rem
}

a:not(.btn):hover {
	text-decoration: underline;
}

a.discrete-link {
	color: inherit;
	text-decoration: none;
}

a.small {
	font-size: 15px;
}