/* Reset + font */
.new {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* The scroll area */
#transitionArea {
  height: 200vh; /* This makes scroll happen */
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Main container always fixed */
.new {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

/* Background image 1 */
.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('../img/a123.png') no-repeat center center;
  background-size: cover;
  z-index: 1;
/*  filter: invert(100%);*/
}

/* Background image 2 */
.background2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('../img/ar2.png') no-repeat center center;
  background-size: cover;
  z-index: 2;
  visibility: hidden;
}

/* Text style */
#transitionArea h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-stretch: condensed;
  font-size: 20vw;
  text-transform: uppercase;
  color: transparent;
  transform-origin: center;
}

/* Text background clip effect */
.background-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('../img/ar2.png') no-repeat center center;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
