html {
	width: 100%;
	height: 100%;

}
body {
	margin: 0px;
	width: 100%;
	height: 100%;
}
a:visited {
	color: white;
}
a:hover {
	text-decoration: none;
}

#wrapper {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	height: 100%;
}
#title {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 1px;
}
.description {
	font-family: "Open Sans", sans-serif;
	font-size: 20px;
}
#header {
	background-color: #1B1B3D;
	color: white;
	
	font-family: "Open Sans Condensed", sans-serif;
	font-size: 35px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	flex: 1 0 320px;
	min-height: 450px;
}
#header > div {
	display: flex;
	justify-content: center;
	margin: 2px 5px 2px 5px;
}
#header > div:first-child {
	margin-top: 10px;
}
#header > div:last-child {
	margin-bottom: 20px;
}
#header i {
	margin: 10px;
	color: #ff4136;
}
#body {
	display: flex;
	flex-direction: column;
	flex: 3 1 500px;
	background-image: url("pic_converted.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	justify-content: center;
	align-items: center;
	min-height: 380px;
}
#body > a {
	display: flex;
	align-items: center;
	height: 35px;
	font-size: 25px;
	width: 450px;
	border: 2px white solid;
	border-radius: 10px;
	margin: 10px;
	padding: 15px;
	color: white;
	/*background-color: rgba(255,255,255,0.7);*/
}
#body a {
	font-family: "Open Sans Condensed", sans-serif;
	text-decoration: none;
	color: white;
	transition: background-color 0.5s ease, border 0.5s ease;
}
#body a:hover {
	border: 2px solid #ff4136;
	background-color: #ff4136;
}

#body a:hover i {
	color: white;
}
#body i {
	transition: color 0.5s ease;
}
#timer {
	display: flex;
}
.icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	color: #ff4136;
}
.icondesc {
	flex: 1;
	display: flex;
	margin-left: 10px;
	font-family: "Open Sans", sans-serif;
}


@media (max-width: 500px) {
	#body > a {
		width: 265px;		
	}
	#body .icondesc {
		font-size: 16px;
	}
}