/* CSS Document */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; color:#FFF; }
body { display: flex; flex-direction: column; min-height: 100vh; background: url('/_CDN/images/body-bg-dark.jpg') no-repeat center center fixed; background-size: cover; font-family: "Noto Sans";}
main { flex: 1; }
footer { background: #111; color: #999; text-align: center; padding: 0.5em; font-size:0.8em; }
.labs {font-size:3.0em; font-family: "Material Symbols Outlined"; color: #00ff00; animation: pulse 5s infinite;}
.centered {display: flex; flex-direction: column; min-height: 80vh; justify-content: center; align-items: center;font-size:2.0em;}
	@keyframes pulse {0% { opacity: 0.5; } 50% { opacity: 1; text-shadow: 0 0 10px #00ff00; } 100% { opacity: 0.5; } 