/*General*/

* {
	box-sizing: border-box;
}

html, body {
	height:100%;
	width: 100%;
	margin:0;
	padding:0;
}

header {
	position: fixed;
	left: 50%;
	top: 20%;
	transform: translate(-50%, -20%);
}

.background {
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
}
.output-weather{
	margin: 0;
	padding: 0;
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	background: white;
}
#defaultCanvas0 {  
    margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
.help-btn {
    height: 60px;
	position: fixed;
	bottom: 10px;
	left: 10px;
	z-index: 3;
}
.help-btn:active {
	height: 55px;
}
.help-text {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
}
h1, p, input {
	font-family: 'Roboto Condensed', sans-serif;
}
h1 {
    margin: 0;
	padding-bottom: 0;
	font-weight: 700;
	font-size: 70px;
    color: #253D5B;
}
p {
    margin: 0 0 20px;
    padding-top: 0;
	font-style: italic;
	font-weight: lighter;
	font-size: 40px;
    color: #67697C;
}
input {
    margin-bottom: 5px;
	padding: 5px;
	font-weight: lighter;
	font-size: 30px;
    border: 1px solid #D3D3D3;
}
input[type="submit"] {
    color: #000;
	background-color: #C6C6C6;
}
