body {
	background-color: royalblue;
}


.button-one {
	position: fixed;
	top: 20vh;
	left: 30vw;
	z-index: 100;
	background-color: transparent;
	font-size: 100pt;
	border: 2px solid white;
	border-radius: 30%;
	padding: 32pt 50pt;
	margin: 12pt;
	box-shadow: 10pt 12pt 11pt navy;
}

	.button-one:hover {
	background-color: white;
}

.drawer-one {
	position: fixed;
		top: 0;
		left: -20vw;
	background: white;
	width: 20vw;
	height: 100vh;
	font-size: 48pt;
	transition: transform 1s;
	font-family: Helvetica;
}

	.slide-the-drawer-one {
		transform: translate(20vw);
	}

.button-two {
	position: fixed;
	top: 20vh;
	left: 48vw;
	z-index: 100;
	background-color: transparent;
	font-size: 100pt;
	border: 2px solid white;
	border-radius: 10%;
	padding: 32pt 50pt;
	margin: 12pt;
	box-shadow: 10pt 12pt 11pt navy;
}

	.button-two:hover {
	background-color: white;
}

.drawer-two {
	position: fixed;
		top: 0;
		left: -100vw;
	background: white;
	width: 100vw;
	height: 20vh;
	font-size: 28pt;
	transition: transform 1s;
	font-family: Helvetica;
}

	.slide-the-drawer-two {
		transform: translate(100vw);
	}


.button-three {
	position: fixed;
	top: 55vh;
	left: 30vw;
	z-index: 100;
	background-color: transparent;
	font-size: 100pt;
	border: 2px solid white;
	border-radius: 80%;
	padding: 32pt 50pt;
	margin: 12pt;
	box-shadow: 10pt 12pt 11pt navy;
}

	.button-three:hover {
	background-color: white;
}

.drawer-three {
	position: fixed;
		top: 80vh;
		left: -100vw;
	background: white;
	width: 100vw;
	height: 20vh;
	font-size: 28pt;
	transition: transform 1s;
	font-family: Helvetica;
}

	.slide-the-drawer-three {
		transform: translate(100vw);
	}


.button-four {
	position: fixed;
	top: 55vh;
	left: 48vw;
	z-index: 100;
	background-color: transparent;
	font-size: 100pt;
	border: 2px solid white;
	border-radius: 100%;
	padding: 50pt 50pt;
	margin: 12pt;
	box-shadow: 10pt 12pt 11pt navy;
}

	.button-four:hover {
	background-color: white;
}

.drawer-four {
	position: fixed;
		top: 0;
		left: -20vw;
	background: white;
	width: 20vw;
	height: 100vh;
	font-size: 48pt;
	transition: transform 1s;
	font-family: Helvetica;
}

	.slide-the-drawer-four {
		transform: translate(20vw);
	}
