@import url('https://fonts.googleapis.com/css?family=Open+Sans:600');

* {
	box-sizing: border-box;
}

:root {
	--color-red: #e3000f;
	--color-red-hover: #c7000d;
}	

html {
	font-size: 16px;
}

body{
	text-align: center;
	background: #fff;
    font-family: 'Futura PT', 'Futura', 'Open Sans';
	padding: 0px;
	margin: 0px;
	width: 100vw;
	height: 100vh;
}

ul {
	padding: 0;
}

.alert {
	display: block;
	width: 100vw;
	padding: 20px;
	background-color: #e3000f;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 100ms;
}
.alert:hover {
	background-color: var(--color-red-hover);
}

.alert--back::before {
	content: '←';
	display: inline-block;
	transform: translateY(-2px);
	margin-right: 5px;
}

.content__wrapper {
	min-width: 400px;
}
.u-center-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.logos {
	margin-top: 0px;
	height: 80px;
}
.logos img {
	width: 80px;
	display: inline-block;
}

h2 {
	text-transform: uppercase;
	margin-top: 30px;
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: .3rem;
}

h1 {
  	color: #000;
  	font-weight: 600;
  	font-size: 40px;
  	margin: 20px 0px 20px;
	height: 55px;
}

#clockdiv{
	font-family: sans-serif;
	color: #fff;
	display: inline-block;
	font-weight: 100;
	text-align: center;
	font-size: 30px;
}

#clockdiv > div{
	padding: 10px;
	border-radius: 3px;
	background: #666;
	display: inline-block;
}

#clockdiv div > span{
	padding: 15px;
	border-radius: 3px;
	background: #00816A;
	display: inline-block;
}

.list--select {
	padding: 0;
	margin: 0;
}

.list--select li {
	list-style: none;
	margin-bottom: 5px;
}
.list--select li:last-of-type {
	margin-bottom: 0;	
}

.list--select li a {
	display: block;
	text-decoration: none;
	color: #fff;
	background-color: var(--color-red);
	text-align: left;
	padding: 10px 15px;
	transition: all 100ms;
}
.list--select li a:hover {
	background-color: var(--color-red-hover);
}