body {
	margin: 0;
	background-color: #000;
	color: #fff;
	font-family: 'Roboto Slab', serif;
	font-family: 'Nova Mono', monospace;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	line-height: 24px;
	overscroll-behavior: none;
}

#big-container {
	position: relative;
}

#big-menu {
	position: absolute;
	left: 0px;
	margin: 50px 0 0 50px;
	z-index: 1000;
}

#pencil {
	position: absolute;
	left: 50px;
	z-index: 100;
}

h1 {
	color: #fff;
	display: block;
	font-family: 'Roboto Slab', serif;
}

h2 {
	color: #eee;
	display: block;
	font-family: 'Roboto Slab', serif;
	font-size: 2em;
	font-weight: 100;
	margin-bottom: 0;
	padding-bottom: 0;
}

h2:hover {
	color: #f9ed32;
}

h3 {
	color: #fff;
	display: block;
	font-family: 'Roboto Slab', serif;
}

a {
	/* color: #ff0; */
	/* color: #f9ed32; */
	color: #eee;
	text-decoration: none;
}

a:hover {
	/* color: #f9ed32; */
	color: #f26522;
	/* text-decoration: underline; */
}

ul{
	padding-left: 10px;

}

li {
	color: #ccc;
	font-family: 'DM Mono', monospace;
	font-size: 1em;
	list-style: none;
	margin: 2px;
}

button {
	cursor: pointer;
	text-transform: uppercase;
}

.less {
	color: #757575;
}

#projects:hover {
	color: #cc0000;
}

#projects-list {
	/* display: none; */
}

.show {
	/* display: block; */
	position: absolute;
	visibility: visible;
	opacity: .5;
  transition: visibility 0.5s, opacity 0.5s linear;
}

.hide {
	position: absolute;
	/* display: none; */
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.25s, opacity 0.25s linear;
}

/* #projects-list ul{
	padding-left: 10px;

}

#projects-list li {
	color: #ccc;
	font-family: 'DM Mono', monospace;
	font-size: 1em;
	list-style: none;
	margin: 2px;
} */

#info {
	position: absolute;
	top: 0px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 1; /* TODO Solve this in HTML */
}

a, button, input, select {
	pointer-events: auto;
}

.dg.ac {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 2 !important; /* TODO Solve this in HTML */
}

#overlay {
	position: absolute;
	font-size: 16px;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: rgba(0,0,0,0.7);
}

	#overlay button {
		background: transparent;
		border: 0;
		border: 1px solid rgb(255, 255, 255);
		border-radius: 4px;
		color: #ffffff;
		padding: 12px 18px;
		text-transform: uppercase;
		cursor: pointer;
	}

#notSupported {
	width: 50%;
	margin: auto;
	background-color: #f00;
	margin-top: 20px;
	padding: 10px;
}

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

h2 {
	color: #eee;
	display: block;
	font-family: 'Roboto Slab', serif;
	font-size: 1.25em;
	font-weight: 100;
	margin-bottom: 0;
	padding-bottom: 0;
}

h3 {
	color: #fff;
	display: block;
	font-family: 'Roboto Slab', serif;
}

a:hover {
	/* color: #f9ed32; */
	color: #fff;
	/* text-decoration: underline; */
}

a {
	/* color: #ff0; */
	/* color: #f9ed32; */
	color: #eee;
	text-decoration: none;
}

a:hover {
	/* color: #f9ed32; */
	color: #f26522;
	/* text-decoration: underline; */
}

ul{
	padding-left: 10px;

}

li {
	color: #ccc;
	font-family: 'DM Mono', monospace;
	font-size: .75em;
	list-style: none;
	margin: 2px;
}

}