html, body {
	margin: 0;
	padding: 0;
}

html {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
	background-image: url("/static/bg.jpg");
	background-size: cover;
	font-family: Inter !important;
}

body {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 20px;
	padding: 10%;
}

.box {
	flex-shrink: 3;
	min-width: 500px; 
	padding: 20pt;
	font-family: Inter;
	color: rgba(255, 255, 255, 0.75);
	display: flex;
	flex-direction: column;
	align-items: center;
	/* From https://css.glass */
	background: rgba(91, 100, 179, 0.3);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

button {
	font-family: Inter;
	font-size: 14px;
	font-weight: 500;
	background: rgba(91, 100, 179, 0.3);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	text-align: center;
	text-decoration: bold;
	color: white;
	padding: 12px;
}

button:hover {
	background: rgba(91, 100, 179, 0.5);
}
