/* ============ general custom css =================== */
body {
  background-color: pink;
}
.myFrame {
  width: 100%;
  top: -20vh;
  position: absolute;
  height: 900px;
  z-index: 9;
  pointer-events: none;
}

/* ============== GRID CSS ================ */
.bodyDiv {
  width: 70%;
  height: 60vh;
  z-index: -2;
  margin-left: auto;
  margin-right: auto;
}

.bodyDiv h1 {
  font-size: 1em;
}

.frame {
  float: left;
  width: 33.33%;
  height: 30vh;
  background-size: 180%;
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  border-radius: 30px;
  padding: 5px;
}

@-webkit-keyframes slidein {
  from {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes slidein {
  from {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.BGAnimation {
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-name: slidein;
          animation-name: slidein;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.box {
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  text-transform: uppercase;
  padding: 5px;
}

.biggerDiv {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  height: 60vh;
  overflow: hidden;
  position: absolute;
  border-radius: 30px;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.largeBG {
  -webkit-transform: scale(2);
          transform: scale(2);
  width: 100%;
  height: 60vh;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: black;
  background-size: 100%;
  background-position: center center;
  overflow: hidden;
  display: none;
}
/*# sourceMappingURL=custom.css.map */