@import url('https://fonts.googleapis.com/css?family=Great+Vibes');
html, body {
	margin: 0;
	padding: 0;
	text-align: center;
	background-size: cover;
	width: 100%;
	height: 100%;
}

h1 {
	font-family: 'Great Vibes', cursive;
	font-size: 50px;
	color: red;
}

h2 {
	font-size: 50px;
	color: green;
}

h3 {
	font-size: 35px;
	color: orange;
}

span {
	padding: 10px;
	background-color: white;
	border-radius: 5px;
}

.temp:hover {
	cursor: pointer;
}

.statusSection, .iconSection, footer {
	font-size: 21px;
}

footer {
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	color: white;
	background-color: #2196F3;
}


