/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */



body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
h1 {
  position: fixed;
	top: 5%;
	left: 50%;
	transform: translate(-50%, -50%);
}

h5 {
  position: fixed;
	top: 75%;
	left: 50%;
	transform: translate(-50%, -50%);
}


button {
  position: fixed;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.myButton {
	box-shadow: 0px 1px 6px -1px #6b0b05;
	background-color:#e4685d;
	border-radius:22px;
	border:2px solid #ff8f8f;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:20px;
	padding:10px 17px;
	text-decoration:none;
	text-shadow:0px 1px 0px #000000;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.myButton:hover {
	background-color:#eb675e;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.myButton:active {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

        