body{
	background-color: #8cbed6;
}

header{
	font-family: Verdana;
	font-size: 20px;
	text-align: center;
	margin-top: 200px;
}

h2{
	font-style: italic;
}

button{
	font-size: 100pt;
	border: 2pt solid white;
	border border-radius: 10%;
	background-color: #d1edf2;
	margin: 3%;
}

button:hover{
	background-color: lightpink;
	box-shadow: 10pt 10pt 10pt;
	box-shadow: darkorange;
}

.nightmode{
	background-color: black;
	color: white;
}

.scalebig{
	transform:scale(1.5);
}

.smallfont{
	font-size: .5em;
}

.upsidedown{
	transform: rotate(180deg);
}

.bigfont{
	font-size: 1.5em;
}

aside#sidedrawer{
	background-color: #ffffbf;
	width: 100vw;
	height: 100vh;	
	position: fixed;
	top: 0;
	left: -100vw;
	transition: transform 1s;
}

button#hamburger{
	z-index: 100;
	position: fixed;
	top: 0;
	font-size: 50pt;
}

aside#bottomleftdrawer{
	background-color: #98FB98;
	width: 100vw;
	height: 100vh;	
	position: fixed;
	top: 0;
	left: -100vw;
	transition: transform 1s;
}

button#bottomleft{
	z-index: 100;
	position: fixed;
	bottom: 0;
	font-size: 50pt;
}

.slide{
	transform: translate(100vw);
}

aside#toprightdrawer{
	background-color: #FFD580;
	width: 100vw;
	height: 100vh;	
	position: fixed;
	top: 0;
	right: -100vw;
	transition: transform 1s;
}

button#topright{
	z-index: 100;
	position: fixed;
	top: 0;
	right: 0;
	font-size: 50pt;
}


aside#bottomrightdrawer{
	background-color: #CBC3E3;
	width: 100vw;
	height: 100vh;	
	position: fixed;
	top: 0;
	right: -100vw;
	transition: transform 1s;
}

button#bottomright{
	z-index: 100;
	position: fixed;
	bottom: 0;
	right: 0;
	font-size: 50pt;
}


.slideright{
	transform: translate(-100vw);
}