@import url(https://fonts.googleapis.com/css?family=Oxygen|Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800);
@import url(https://fonts.googleapis.com/css?family=Wire+One);
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Permanent+Marker&display=swap');


html {
	/* layout */
	margin: 0;
	padding: 0;
	overflow: hidden;
}

body {
	/* appearance */
	overflow: auto;

	/* layout */
	margin: 0;
	padding: 0;
	
	/* typography */
	font-family: 'Open Sans', 'Arial';
	font-size: 1em;
	text-align: center;
}

h1 {
	/* appearance */
	color: rgb(0, 0, 0);
	
	/* layout */
	margin: 0;
	padding: 0;
	
	/* typography */
	font-family: 'Permanent Marker';
	font-size: 2.5em;
	font-weight: 300;
	text-align: left;
}

h2 {
	/* appearance */
	color: rgb(0, 0, 0);
	
	/* layout */
	margin-top: 5em;
	padding: 1em;
	
	/* typography */
	font-size: 2em;
	font-weight: 300;
}

nav {	
	/* layout */
	width: 700px;
	position: absolute;
	right: 0;
	top: .8em;
}

button {
	/* appearance */
	border: none;
	background: rgba(255, 255, 255, 0);
	cursor: pointer;
	
	/* layout */
	width: 200px;
	margin: 0;
	float: right;
	
	/* typography */
	font-family: 'Open Sans';
	text-align: right;
	text-transform: uppercase;
}
.ss-main{
	/* typography */
	font-family: 'Open Sans';
	text-align: right;
	text-transform: uppercase;
	font-size: smaller;
}
.ss-value{
	background-color: rgba(0, 160, 100, 1);
}

button:hover {
	background: rgba(67, 205, 128, 1);
}

#vis {
	/* appearance */
	background: rgba(255, 255, 255, 1);
	
	/* layout */
	left: 0;
	/*position: absolute;*/
	z-index: 0;
	
	/* typography */
	font-family: 'Open Sans';
	
}

#ctrl_panel {
	/* appearance */
	background: rgba(255, 255, 255, 0);
	
	/* layout */
	width: 95%;
	padding: 1em;
	position: absolute;
	z-index: 1;
	
	/* typography */
	font-size: 1em;
}

#entry_form {
	/* layout */
	margin-top: 0;
}

#shuffle_menu {
	/* appearance */
	background: rgba(255, 255, 255, 1);
	display: none;
	
	/* layout */
	/*width of the canvas*/
	width: 100%; 
	height: 50px;
	max-height: 50px;
	position: absolute;
	bottom: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	
	/* typography */
	text-align: center;
}

.shuffle_button_container {
	/* layout */
	width: 60px;
	height: 30px;
	margin: 0;
	padding: 0;
	float: left;
	display: block;
}

.shuffle_button_container button {
	/* layout */
	width: 28px;
	height: 30px;
	margin: 0;
	padding: 0;
	
	/* typography */
	font-size: 1.5em;
	text-align: center;
}

	/* appearance */
	
	/* layout */
	
	/* typography */

	.cite{
		display: flex;
		font-size: 10px;
		justify-content: right;
		align-items: right;
	}

	.nav-buttons{
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 100%;
	}


	@media screen and (max-width: 600px) {


		/* Horrible attempt to hide the buttons that are not working on mobile */
		.nav-buttons{
			display:none;
		}

		.shuffle_menu {
			display: none !important;
		}

		.ss-25838{
			display: none !important;
		} 
		
		.ss-main{
			display: none !important;
		}
	}