/* main  */
/* make this style.scss if u wanna go crazy */

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

html { height: 100%; }


#inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

#longies {
	background-color: #C7C7C7;
}

#splash {
	z-index: 1;
	position: absolute;
	width: 960px;
/*	background: white;*/
	display: flex;
	align-items: center;
    justify-content: center;
    display: none;
}

.mobile #splash {
	padding:  0.5em;
}

#title {
	font-size: 2em;
	margin-bottom: 1em;
/*	display: none;*/
/*	color: white;*/
}

#controls {
	margin-top: 1em;
	margin-bottom: 1em;
}

button {
	font-size: 1em;
	padding: 0.25em 0.5em;
	border-style: solid;
	border-radius: 0.25em;
	background: transparent;
/*	border-color: white;*/
/*	background-color: #ad95df;*/
	border-color: #ad95df;
	color: #ad95df;
}

button:hover {
	cursor: pointer;
	background: white;
	border-color: white;
	color: black;
}

button:active {
	background-color: white;
}

.mobile #title {
	font-size:  1.5em;
}

#splash * {
	font-family: verdana;
}

.mobile #inner-splash {
	text-align:  center;
}

.track {
/*	margin-bottom: 1em;*/
	padding: 0.25em 0.5em;
	border-radius: 5px;
	display: flex;
}

.active {
	background-color: #444466;
}

.track label {
	margin-right: auto;
}

.track span {
	cursor: pointer;
	margin-left: 3px;
}

.track input {
	width: 42px;
}

#info {
	display: none;
/*    background: black;*/
    max-width: 460px;
/*    border: 1px solid white;*/
/*    border-radius: 1em;*/
/*    padding: 1em;*/
}

#info.visible {
	display: block;
}

#info p {
	margin: 1em;
	font-size: 14px;
}

/* debug remove */
#log {
	position: fixed;
	top: 10px;
	left: 10px;
	font-family:  monaco, monospace;
	font-size:  32px;
}

/* some basic media queries */

@media only screen and (max-device-width: 540px) {
	#container {
		margin: 1em;
	}
	.track span {
		height: 2em;
		margin-left: 0;
	}
}