/* Split the screen in half */
.split {
  height: 100%;
  width: 50%;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow-x: hidden;
  padding-top: 20px;
}

/* Control the left side */
.left {
  left: 0;
  background-color: #231f20;
}

/* Control the right side */
.right {
  right: 0;
  background-color: white;
  color: #ee1d23;
}

p {
	color: #231f20;
	margin-top: 0;
}

/* If you want the content centered horizontally and vertically */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Style the image inside the centered container, if needed */
.centered img {
  max-width: 100%;
}

a {
	color: #231f20;
	/*text-decoration:none;*/
}

.upperRight { 
	top:5px;
	left:-18px;
	position:relative;
	float:right;
}

h2 {
	margin-block-end: 0em;
}

@media (max-height: 600px) {
    .split.right>.centered { 
		font-size: small;
	}
}

@media (min-height: 601px) {
    .split.right>.centered { 
		font-size: auto;
	}
}

@media (min-width: 751px) {
    .split.right>.centered { 
		font-size: larger;
	}
}

.split.right>.centered {
    width: 1200px; 
    max-width: 100%;
}