header, footer {
	margin: 5 auto;
	background-color: #EFEFEF;
	width: 100%;
	box-sizing: border-box;
	border-radius: 24px;
}

header {
	padding: 5px;
}

footer {
	padding: 24px;
}

h1 {
	font-size: calc(16px + (26 - 16) * ((100vw - 300px) / (1600 - 300)));
}

input#capturebutton, input#uploadbutton {
	height: 3em;
}

#uploadmsg {
	color: black;
	background: #fff; 
	padding: 10px;
	position: fixed;
	top: 50%;
	left: 25%;
	z-index: 100;
	margin-right: -25%;
	margin-bottom: -25%;
}

#uploadover {
	background: black;
	z-index: 99;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	filter: alpha(opacity=80);
	opacity: 0.8;
}

video {
	max-width: 50%;
	display: none;
}

img#photo {
	display: none
}

canvas {
	display: none;
}

img {
	max-width: 50%;
	height: auto;
}

.timer {
	margin: 10px;
}

.safe {
	margin: 10px;
	display: block;
	background: #cca92c;
	border: 3px solid lightgreen; 
}

.infected {
	margin: 10px;
	display: block;
	background: #cca92c;
	box-shadow: 0 0 0 rgba(255,0,0, 0.4);
	animation: pulse 2s infinite;
	border: 3px solid red; 
}

@-webkit-keyframes pulse {
	0% { -webkit-box-shadow: 0 0 0 0 rgba(255,0,0, 0.4); }
	70% { -webkit-box-shadow: 0 0 0 10px rgba(255,0,0, 0); }
	100% { -webkit-box-shadow: 0 0 0 0 rgba(255,0,0, 0); }
}
@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(255,0,0, 0.4);
		box-shadow: 0 0 0 0 rgba(255,0,0, 0.4);
	}
	70% {
		-moz-box-shadow: 0 0 0 10px rgba(255,0,0, 0);
		box-shadow: 0 0 0 10px rgba(255,0,0, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(255,0,0, 0);
		box-shadow: 0 0 0 0 rgba(255,0,0, 0);
	}
}
