@font-face{font-family: "museo_regular";
  src:url('fonts/museo300.eot?1347369731');
  src:url('fonts/museo300.eot?&1347369731#iefix') format("embedded-opentype"),
      url('fonts/museo300.woff?1347369733') format("woff"),
      url('fonts/museo300.ttf?1347369732') format("truetype"),
      url('fonts/museo300.svg?1347369732#museo_regular') format("svg");
  font-weight:300;
  font-style:normal;
}



body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: 'museo_regular', sans-serif;
  font-size: 20px;
}



main {
  height: 100vh;
  width: 100vw;
  background-image: linear-gradient(#B3DAF2, #B3DAF2);
  position: relative;
  overflow: hidden;
}

header {
  display: flex;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: rgba(255,255,255,.2);
}
header a {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
  color: #000;
  text-decoration: none;
}
header a:hover {
  box-shadow: 0 -8px 0 rgba(255,255,255,.4) inset ;
}
body[data-manifesto="home"] a[data-scrollto="home"],
body[data-manifesto="experiment"] a[data-scrollto="experiment"],
body[data-manifesto="focused"] a[data-scrollto="focused"],
body[data-manifesto="diversity"] a[data-scrollto="diversity"],
body[data-manifesto="cocreate"] a[data-scrollto="cocreate"] {
  background-color: rgba(255,255,255,.3);
  box-shadow: 0 -8px 0 rgba(255,255,255,.4) inset ;
}

.grass {
  position: absolute;
  left: 0;
  bottom: 0;

  height: 35vh;
  width: 100vw;
  background-image: linear-gradient(#7FAA2C, #B2CC80);

  transition: 1s height ease;

  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

a.wac-logo-link {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1rem;
  height: 20px;
}

.manifesto-wrapper {
  /* height: 595px;*/
  /* width: 420px;*/

  height: 80vh;
  width: 100vw;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
/*
  position: absolute;
  bottom: calc(35vh - (595px / 2));
  left: calc(50vw - (420px / 2)); */
}

/* #manifesto-experiment {border: 10px solid hotpink;}
#manifesto-focused {border: 10px solid lightgreen;}
#manifesto-diversity {border: 10px solid lavender;}
#manifesto-cocreate {border: 10px solid lightskyblue;} */


.manifesto-slider {
  height: 500vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 1s all ease;
}

.manifesto-slider .slide {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body[data-manifesto="home"] .manifesto-slider {
  transform: translateY(0);
}
body[data-manifesto="experiment"] .manifesto-slider {
  transform: translateY(-100vh);
}
body[data-manifesto="focused"] .manifesto-slider {
  transform: translateY(-200vh);
}
body[data-manifesto="diversity"] .manifesto-slider {
  transform: translateY(-300vh);
}
body[data-manifesto="cocreate"] .manifesto-slider {
  transform: translateY(-400vh);
}

body[data-manifesto="diversity"] .grass {
  height: 100vh;
}


.slide .description {
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem;
}


img {
  height: 100%;
  max-height: 100%;
}


@media screen and (max-height: 800px) {
  .grass {
    height: 40vh;
  }
}
@media screen and (max-height: 600px) {
  .grass {
    height: 45vh;
  }
}



/* TEMP */
.with-animation-x {
  align-items: end;
}