@import url('https://fonts.googleapis.com/css?family=Bungee|Bungee+Shade|Lexend+Deca&display=swap');

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: blue;
	text-decoration: underline;
	cursor: pointer;
}

.date {
	margin-top: -20px;
	margin-left: 20px;
	color: #999;
}

section {
	width: 600px;
}

blockquote {
	font-size: 130%;
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	line-height: 35px;
	position: relative;
	color: rgb(74, 74, 74);
	width: 70%;
}

blockquote:before {
	content: '"';
	display: block;
	font-family: 'Georgia', serif;
	font-size: 55px;
	font-weight: 800;
	position: absolute;
	top: 0;
	left: -55px;
	color: rgb(180, 180, 180);
}

p.attribution {
	width: 70%;
	text-align: right;
	font-size: 18px;
	margin-top: -18px;
	font-weight: 600;
	font-family: 'Roboto', sans-serif;
	color: rgb(140, 140, 140);
	margin-bottom: 20px;
}

p.attribution:before {
	content: '~ ';
}

h1 {
	font-family: 'Bungee Shade', cursive;
	font-weight: 200;
	font-size: 50px;
	margin-left: -50px;
	margin-bottom: 0;
}

h2 {
	font-family: 'Lexend Deca', sans-serif;
	margin-top: 0px;
}

h3 {
	font-size: 24px;
}

h3, h4 {
	font-family: 'Lexend Deca', sans-serif;
	margin-left: -30px;
}

p {
	font-family: 'Verdana', serif;
	font-size: 20px;
	line-height: 130%;
	font-weight: 400;
}

.disabled {
	background-color: #BBB;
	cursor:default;
	pointer-events: none;
}

ul li {
	list-style-type: none;
}

footer {
	height: 25%;;
	width: 100%;
}

.break {
	width: 100%;
	border-bottom: 2px dashed black;
}

aside {
	position: fixed;
	width: 200px;
	border-right: 4px solid white;
	left: -201px;
	transition: all 0.2s;
	height: 100%;
	padding: 20px;
	padding-top: 70px;
	background-color: white;
	display: flex;
	flex-direction: column;
}

aside.open {
	left: 0;
	border-right-color: #000;
}

aside > button {
	position: fixed;
	left: 5px;
	top: 5px;
	background-color: white;
	border: 2px solid black;;
	outline: none;
	cursor: pointer;
	transition: all 0.2s;
	font-size: 16px;
	width: 100px;
	padding: 10px 15px;
	font-weight: 600;
}

aside > button:hover {
	background-color: #CCC;
}

aside > h3 {
	margin-left: 0px;
	margin-bottom: 5px;
}

aside > a {
	margin-left: 10px;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #444;
}


@media (pointer: coarse) {
	body {
		align-items: center;
		max-width: 600px;
	}
	section {
		width: 800px;
	}

	aside > button {
		font-size: 40px;
		padding: 20px 40px;
		border-width: 2px;
		width: 300px;
	}

	aside {
		width: 100%;
		left: -100%;
		padding-top: 130px;
	}

	aside.open {
		
	}

	aside > h3 {
		font-size: 60px;
	}

	aside > a {
		font-size: 40px;
	}

	h1 {
		font-size: 50px;
		margin-top: 130px;
	}

	h1, h2, h3 {
		margin-left: 0;
	}
}
