@import url(https://fonts.googleapis.com/css?family=Oswald);


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
}

body {
	background: #fff;
	text-align: center;
	overflow: hidden;
}
		
svg {
	width: 80%;
	height: 100%;
	margin: 0 auto;}

path {
	fill: cornflowerblue;
	cursor: pointer;
	-webkit-transition: all 150ms;
	-moz-transition: all 150ms;
	-o-transition: all 150ms;
	transition: all 150ms;
}
	
path:hover {
	opacity: 0.85;
}
	
/* VQTCC */

h1 {
	font-family: 'Oswald', sans-serif;
	color: #333;
	font-size: 60px;
}

@media (max-width: 767px) {
.header, .footer, .actual {
	font-family: 'Oswald', sans-serif !important;
	font-size: 10px !important;
	color: #fff !important;
}
}

@media (max-width: 767px) {
.actual {
	position: absolute !important;
	font-size: 10px !important;
	bottom: 2px !important;
	text-align: center !important;
	background: rgba(0,0,0,0.3) !important;
	padding: 2px !important;
	z-index: 5 !important;
	width: 50% !important;
	margin:  0 30% !important;
	border-radius: 3px !important;
}
}

		
.header, .footer, .actual {
	font-family: 'Oswald', sans-serif;
	font-size: 24px;
	color: #fff;
}
		
.footer {
	position: absolute;
	bottom: 10px;
	text-align: center;
	width: 100%;
}
	
.actual {
	position: absolute;
	font-size: 32px;
	bottom: 10px;
	text-align: center;
	background: rgba(0,0,0,0.3);
	padding: 15px;
	z-index: 5;
	width: 40%;
	margin:  0 30%;
	border-radius: 3px;
}