/****************GLOBAL STYLES****************/
body {
  background-color: black;
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/****************NAVIGATION / SETTINGS BAR****************/
.nav-bar {
  width: 100%;
  height: 6%;
  background: black;
  z-index: 2;
  padding-top: 0.8em;
}

.nav-bar .quick-settings {
  z-index: 3;
  background-color: black;
  position: absolute;
  top: 0;
  height: 6%;
  overflow: hidden;
  -webkit-transition: height 0.8s ease;
  transition: height 0.8s ease;
  width: 100%;
}

.nav-bar .quick-settings .settings-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.5em;
}

.nav-bar .quick-settings .settings-icons .icon {
  width: 2.5em;
  height: 2.5em;
}

.nav-bar .quick-settings .down-arrow {
  display: block;
  width: 2em;
  height: 1em;
  margin: auto;
  position: absolute;
  bottom: 3%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
}

/****************INITIAL BACKGROUND IMAGES****************/
.p1 {
  background-image: url("../images/window.jpg");
}

.p1-1 {
  background-image: url("../images/outside-view.jpg");
}

.p1-1-1 {
  background-image: url("../images/dancing.jpg");
}

.p1-1-2 {
  background-image: url("../images/gala-interior.jpg");
}

.p2-1 {
  background-image: url("../images/fire-alarm.jpg");
}

.p2-2 {
  background-image: url("../images/gala-interior.jpg");
}

.p3-1 {
  background-image: url("../images/gala-interior.jpg");
}

.p3-2 {
  background-image: url("../images/vent.jpg");
}

.p4-1 {
  background-image: url("../images/hallway.jpg");
}

.p4-2 {
  background-image: url("../images/hallway.jpg");
}

.p5-1 {
  background-image: url("../images/hallway.jpg");
}

.p5-2 {
  background-image: url("../images/gallery-inside.jpg");
}

.p6 {
  background-image: url("../images/painting-home.jpg");
}

/****************FULL WIDTH IMAGE SECTION****************/
.scene-image {
  width: 100vw;
  height: 70%;
  position: relative;
}

.scene-image .scene {
  z-index: -1;
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  clear: none;
}

.scene-image .overlay {
  background-image: url("../images/overlay.gif");
  opacity: 0.06;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
}

/****************PASSAGE / TEXT SECTION****************/
.passage {
  height: 24%;
  width: 100%;
  position: relative;
}

.passage .text, .passage .choices {
  height: 100%;
  width: 100%;
  padding: 2em 3em;
  text-align: center;
  position: absolute;
}

.passage .text p {
  font-size: 1.2em;
}

.passage .choices {
  z-index: 10;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  display: none;
}

.passage .choices a {
  font-size: 1.5em;
}

.passage .choices .choices-button {
  border: 2px solid currentColor;
  border-radius: 3rem;
  overflow: hidden;
  padding: 1.5rem 5rem;
  height: 12.5vh;
  position: relative;
  text-decoration: none;
  -webkit-transition: .2s transform ease-in-out;
  transition: .2s transform ease-in-out;
  will-change: transform;
  z-index: 0;
}

.passage .choices .choices-button::after {
  background-color: white;
  border-radius: 3rem;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(-100%, 0) rotate(10deg);
          transform: translate(-100%, 0) rotate(10deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: .2s transform ease-out;
  transition: .2s transform ease-out;
  will-change: transform;
  z-index: -1;
}

.passage .choices .choices-button:hover::after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.passage .choices .choices-button:hover {
  border: 2px solid transparent;
  color: black;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  will-change: transform;
}
/*# sourceMappingURL=scenes.css.map */