html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  font-family: "Source Sans Pro";
  color: #FCAB64;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.slide {
  position:absolute;
  top:0;
  left:0;
  width: 100%;
  display: none;
  background: #FCD29F;
  height: 100%;
  z-index: 0;
}

#current-slide {
  z-index: 1;

  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;

}

h1 {
  font-size: 8vw;
  display: inline;
}
