body {
	background-color: #333;
	color: white;
	font-family: Helvetica;
	max-width: 900px;
	min-width: 500px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 5px;
	padding-right: 5px;
}

img {
	/*max-width: 900px;*/
	width: 100%;
}

button {
	display: block;
	font-size: 16px;
	border: 1px solid black;
	margin-right: 1em;
	border-radius: 4px;
	color: black;
	background-color: #ddd;
	box-shadow: 3px 3px 6px black;
	/*height: 28px;*/
	padding-left: 0.5em;
	padding-right: 0.5em;
}

button:hover {
	background-color: #8bcfe5;
	box-shadow: 6px 6px 6px black;
}

button:active, button.active, button.paused {
	background-color: #8bcfe5;
	margin-top: 2px;
	margin-bottom: -2px;
}

button.active:after {
	content: " \275A\275A";
}

button#current.active:after {
	content: "";
}

button.paused:after {
	content: " \25B6";
}

.menu {
	display: flex;
	margin-bottom: 0.5em;
	font-size: 18px;
	width: 100%;
	justify-content: space-between;
	align-items: stretch;
}

.menu div {
	padding-top: 4px;
}

.footer {
	font-size: 16px;
	font-weight: 100;
	font-color: #eee;
}

a {
	color: #8bcfe5;
}

.title {
	font-weight: bold;
	border-bottom: 1px solid white;
	margin-right: 5px;
	align-self: flex-start;
}

.submenu {
	font-size: 18px;
    	text-align: right;
    	font-style: italic;
    	margin-bottom: 8px;
}

@media all and (max-width: 640px){
    .menu, .footer, button {
        font-size: 22px;
    }
}