
/*
Settings
*/
  body {
    margin: 0;
  }
  div {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 5em;
  }
  img {
    width: 100%;
    padding: 10vh 10vw;
  }
  p {
    padding: 10px;
    margin-right: 15px;
  }

/*
// footer
*/
.c_r {
  width: 100%;
  position: fixed;
  bottom: 0;
  height: auto;
  color: #231f20;
  text-align: right;
  font-size: 1em;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .c_r {
    font-size: .7em;
  }
}

/*
main stuff
*/
.main-container {
  position: absolute;
  left: 0;
  width: 100%;
	transition: all 1.333s cubic-bezier(.65, .05, .36, 1);
  cursor: pointer;
  /*order-left: 0vh solid #000;*/
  border-left: 0vh solid #fff;
}
@media only screen and (min-width: 1024px) {
  .main-container:hover {
    border-left: 33vh solid #231f20;
    /*border-left: 33vh solid #fff;*/
  }

}
.main-container--scene-start {
  left: 44vw;
}
.main-container--scene-start:hover .grid-screen {
  width: 11vw;
}
.content-container-intro {
  position: absolute;
  left: -100vw;
  /*background-color: #000;*/
  background-color: #fff;
  width: 44vw;
  transition: all 1.333s cubic-bezier(.65, .05, .36, 1);
}
.content-container-intro.content-container-intro--scene-start {
  left: 0vw;
}
.content-container-intro p {
  font-size: 24px;
}
.grid-screen {
  position: relative;
  width: 0vw;
  left: 0;
  transition: width 1.333s cubic-bezier(.65, .05, .36, 1);
}

.grid-screen__cell {
  width: 10px;
  height: 10px;
  background-color: #231f20;
}
.grid-screen__cell:hover {
  background-color: black;
}
.grid-screen.grid-screen__row {
    display: flex;
    flex-direction: initial;
    height: auto;
}
.grid-screen {
    display: flex;
    flex-direction: column;
    /* justify-items: flex-start; */
    /* justify-content: flex-end; */
}
.grid-screen {
    display: none;
    flex-direction: column;
    /* justify-items: flex-start; */
    /* justify-content: flex-end; */
}
.js-grid-screen__cell--active {
  background-color: white;
}