:root {
  --container-bg-color: #333;
  --left-bg-color: rgba(255, 0, 0, 0.1);
  --left-button-hover-color: rgba(11, 11, 11, 0.1);
  --right-bg-color: rgba(43, 43, 243, 0.1);
  --right-button-hover-color: rgba(11, 11, 11, 0.1);
  --hover-width: 50%;
  --other-width: 50%;
  --speed: 1000ms;
}

html, body {
  padding:0;
  margin:0;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

h1 {
  font-size: 5rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  white-space: nowrap;
}
h1 .special-color {
  color: #ea0400;
}
h1 .special-color2 {
  color: #456799;
}
h3 {
  font-size: 3rem;
  color: #fff;
  position: absolute;
  top: 30%;
  transform: translateX(-50%);
  white-space: nowrap;
  left: 50%;
}

.button {
  display: block;
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translateX(-50%);
  -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
	background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
	background-color:#ededed;
	-webkit-border-top-left-radius:30px;
	-moz-border-radius-topleft:30px;
	border-top-left-radius:30px;
	-webkit-border-top-right-radius:0px;
	-moz-border-radius-topright:0px;
	border-top-right-radius:0px;
	-webkit-border-bottom-right-radius:30px;
	-moz-border-radius-bottomright:30px;
	border-bottom-right-radius:30px;
	-webkit-border-bottom-left-radius:0px;
	-moz-border-radius-bottomleft:0px;
	border-bottom-left-radius:0px;
text-indent:0;
	border:1px solid #ffffff;
	display:inline-block;
	color:#777777;
	font-family:Verdana;
	font-size:17px;
	font-weight:bold;
	font-style:normal;
height:50px;
	line-height:50px;
width:200px;
	text-decoration:none;
	text-align:center;
	text-shadow:1px 1px 0px #ffffff;
}


.split.left .button:hover {
  border-color: var(--left-button-hover-color);
  border: #fff solid 0.1rem;
  background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
	background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
	background-color:#dfdfdf;
  color: #D31616
}

.split.right .button:hover {
  background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
	background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
	background-color:#dfdfdf;
  border-color: var(--right-button-hover-color);
  border: #fff solid 0.1rem;
  color: #2654F0;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--container-bg-color);
}

.split {
  position: absolute;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.split.left {
  left:0;
  background-size: cover;
  border-right: 1px solid white;
}

.split.left:before {
  position:absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--left-bg-color);
  border-right: 1px solid white;
  
}

.split.right {
  right:0;
  background-size: cover;
  border-left: 1px solid white;
}

.split.right:before {
  position:absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--right-bg-color);
  border-left: 1px solid white;
}

.split.left, .split.right, .split.right:before, .split.left:before {
  transition: var(--speed) all ease-in-out;
}

.hover-left .left {
  width: var(--hover-width);
  
}

.hover-left .right {
  width: var(--other-width);
  filter: grayscale(100%) blur(3px);
}

.hover-left .right:before {
  z-index: 2;
}


.hover-right .right {
  width: var(--hover-width);
}

.hover-right .left {
  width: var(--other-width);
  filter: grayscale(100%) blur(3px);
}

.hover-right .left:before {
  z-index: 2;
}
#myVideo {
  position: static;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}
@media(max-width: 800px) {
	
  h1 {
    font-size: 2rem;
  }

  .button {
    width: 7rem;
	top: 70%;
  }
}
/* Use a media query to add a breakpoint at 800px: */
@media screen and (max-width: 800px) {
  .left, .main, .right {
    width: 50%; /* The width is 100%, when the viewport is 800px or smaller */
	
  }
  h3 {
	font-size: 35px;
	margin-top: 1px;
	}
	h1 {
	font-size: 45px;
	margin-top: 1px;
	}
@media(max-height: 700px) {
  .button {
    top: 77%;
  }
  h3 {
	font-size: 35px;
	margin-top: 1px;
	padding-left: -50px;
	}
	h1 {
	font-size: 35px;
	margin-top: 1px;
	}
}


}