@import url("https://fonts.googleapis.com/css2?family=Muli&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "Muli";
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
body .main {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  white-space: nowrap;
}
body .main .split {
  width: 50%;
  position: relative;
  transition: all 1s ease-out;
}
body .main .split h1 {
  color: #fff;
  margin: 1rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  position: absolute;
  font-size: 2rem;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}
body .main .split a.btn {
  margin: 1rem;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  position: absolute;
  top: 30%;
  left: 50%;
  font-size: 1.2rem;
  transform: translateX(-50%);
}
body .main .split.left {
  background-image: url("https://images.unsplash.com/photo-1536782376847-5c9d14d97cc0?q=80&w=2076&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-repeat: no-repeat;
  background-size: cover;
}
body .main .split.left:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 4, 4, 0.3882352941);
}
body .main .split.left a.btn {
  border: 2px solid #eee;
  color: #fff;
}
body .main .split.left a.btn:hover {
  border: 2px solid #325464;
  background-color: #325464;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2509803922);
}
body .main .split.right {
  background-image: url("https://images.unsplash.com/photo-1538991383142-36c4edeaffde?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-repeat: no-repeat;
  background-size: cover;
}
body .main .split.right:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 4, 4, 0.3882352941);
}
body .main .split.right a.btn {
  border: 2px solid #eee;
  color: #fff;
}
body .main .split.right a.btn:hover {
  border: 2px solid #8F0C03;
  background-color: #8F0C03;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2509803922);
}
body .main.show-left .split.left {
  width: 75%;
}
body .main.show-left .split.right {
  width: 25%;
}
body .main.show-right .split.left {
  width: 25%;
}
body .main.show-right .split.right {
  width: 75%;
}/*# sourceMappingURL=splitPage.css.map */