
:root {
	--primary-color:   #ffe100;
	--secondary-color: #4c4c4c;
	--green:           #34b233;
	--gutter:          50px;
	--yellow:          #ffe100;
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	margin: 0;
	background: var(--secondary-color);
	font-size: 50px;
	font-weight: normal;
	color: #ffe100;
	font-family: 'Oxygen Mono', monospace;
	/*-webkit-font-smoothing: antialiased;*/
}

body {
	padding: var(--gutter);
}

ul {
	list-style: none;
	word-wrap: break-word;
}

.screens {
	height: 100%;
	margin: 0;
	padding: 0;
	width: 100%;
}

.login-form .form,
.rfid-error,
.heartbeat-error .server-error {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: var(--gutter);
	background: var(--secondary-color);
}

/*.memberCheckinInput {
	width: 400px;
	background-color: transparent;
	border: none;
	border-bottom: 2px solid #fff;
	outline: none;
	padding-bottom: 15px;
	text-align: center;
	font-size: 200%;
	letter-spacing: 3px;
}*/

.logged-in-message,
.rfid-error,
.heartbeat-error,
.login-form .form {
	display: none;
}

.wifi {
	color: var(--green);
}

.not-wifi {
	color: var(--yellow);
}
.robot-message {
	font-size: 100px;
	font-weight: bold;
}

h1 {
	margin-top: 20px;
	font-size: 100px;
}

h1 span {
	padding-right: 10px;
	border-right: 100px solid;
	animation: caret 1s steps(1) infinite;
}

@keyframes caret {
	50% {
		border-color: transparent;
	}
}
