* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-image: radial-gradient(circle, #001d25, #0b1620, #100f18, #0d070c, #000);
	height: 100dvh;
	width: 100dvw;
	overflow: hidden;
	filter: saturate(30%);
}

@keyframes glow {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

div {
	color: rgba(255, 255, 255, 0.7);
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	font-size: 1.5rem;
	font-weight: 100;
}

.container {
	gap: 1rem;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.banner {
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 1.1rem;
	background: black;
	width: 100%;
	line-height: 2;
	text-align: center;
}

a:link,
a:visited,
a:hover,
a:active {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 32px;
}

.logo {
	height: 160px;
	opacity: 1;
	animation: glow 2.5s ease infinite;
}

@media (max-width: 800px) {
	div,
	.banner {
		font-size: 1rem;
	}
}
