 /* Split the screen in half */

html, body {
	margin: 0;
	padding: 0;
}
.split {
  height: 100%;
  width: 50%;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow-x: hidden;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
	margin: 0;
}

/* Control the left side */
.left {
  left: 0;
  background-color: white;
}

/* Control the right side */
.right {
  right: 0;
  background-color: white;
}

/* If you want the content centered horizontally and vertically */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.topright {
  position: absolute;
  top: 0%;
  left: 70%;
}
div.topleft {
  position: absolute;
  top: 10px;
  left: 10px;
}

div.absolute {
  position: absolute;
  top: 100px;
  right: 0;
  width: 200px;
  height: 100px;
  border: 3px solid #73AD21;
}
/* Style the image inside the centered container, if needed */
.centered img {
  width: 150px;
  border-radius: 50%;
} 

.footer {
	position:absolute;
	top: 90%;
  /* text-align: center; */
	margin: 0 auto;
  display: flex;
  justify-content: center;
}
.aa {
	width: 80%;
}
.button {
  border: none;
  color: #1F77B4;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  /* margin: 4px 2px; */
	background-color: Transparent;
	font-family: arial;
	/* color: #1E90FF; */
	border: 2px solid #1F77B4;
	letter-spacing: 0.25em;
}

.button:hover {
  color: #566573;
	border: 2px solid #566573;
	cursor: pointer;
}
