button {
    transition: all cubic-bezier(0.18, 1.57, 0.46, 0.83) 300ms;
    -webkit-transition: all cubic-bezier(0.18, 1.57, 0.46, 0.83) 300ms;
    -moz-transition: all cubic-bezier(0.18, 1.57, 0.46, 0.83) 300ms;
    -ms-transition: all cubic-bezier(0.18, 1.57, 0.46, 0.83) 300ms;
    -o-transition: all cubic-bezier(0.18, 1.57, 0.46, 0.83) 300ms;
}

html, body {
	font-family: 'Quicksand', sans-serif;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0px;
}
html, #gmap {
	overflow: hidden;
}

body.dark {
	background: url(https://cdnb.artstation.com/p/assets/images/images/001/201/827/large/khyzyl-saleem-s2k-portrait1low.jpg?1442082963);	
	background-position: center;
	background-size: cover;
	color: #fff;
}

body {
	color: rgb(37, 37, 37);
	box-sizing: border-box;
	user-select: none;
}

body.dark .overlay {
	z-index: -1;
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: auto;
    top: 0px;
    left: 0px;
    background: rgb(6 6 6 / 70%);
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}

label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 5px 10px;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #383838;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #f9f9f9;
}

button:focus {
	border-color: #666;
}

button > span {
	display: block;
	font-size: xx-small;
}

.container {
	padding: 30px;
}