@font-face {
  font-family: cross;
  src: url("../fonts/cross.otf") format("opentype");
}

body {
  margin: 0px;
  padding: 0px;
}

.container {
  height: 100vh;
  width: 100vw;
  background-color: #e3e3e3;
}

.bottom {
  height: 100vh;
  width: 100vw;
  position: absolute;
  background-color: rgba(69,178,157,1);
  bottom: 0px;
  display: flex;
  justify-content: center;
}

body {
  font-family: "Montserrat", sans-serif;
}


/* Wipe Effect Bottom Page */
section {
  position: relative;
  display: inline-block;
  float: left;
  width: 50vw;
  height: 100vh;
  transition: all 0.25s;
  cursor: pointer;
}
section:after {
  position: absolute;
  z-index: 9;
  content: "";
  transition: all 0.25s;
}
section.wipe-left:after, section.wipe-right:after {
  top: 0;
  width: 0;
  height: 100%;
}
section.wipe-left {
  background-color: rgba(69,178,157, 0.2);
}
section.wipe-left:after {
  right: 0;
  background-color: rgba(69,178,157, 0.5);
}

section.wipe-right {
  background-color: #efc94c;
}
section.wipe-right:after {
  left: 0;
  background-color: rgba(176,148,56, 0.5);
}

section:hover:after {
  width: 100%;
  height: 100%;
}
section span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99;
  font-size: 2vh;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#title {
  font-size: 65vh;
  position: absolute;
  top: 0px;
  right: -2vw;
  font-family: cross;
  text-shadow: 10px 10px 0px rgba(69,178,157, 1);
  color: #efc94c;
}

#digitalImg {
  height: 100%;
  width: 100%;
}

#mainBackdrop {
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  width: 100%;
  opacity: 0.3;
}