/*--------------------GLOBAL STYLES--------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: black;
  font-family: 'Concert One', cursive;
  width: 100%;
  height: 100%;
  cursor: url("../assets/images/new-cursor.png"), auto;
}

/*--------------------INSTRUCTIONS OVERLAY--------------------*/
#instructions {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 13;
  cursor: pointer;
}

#instructions #text {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 0.5em;
  font-size: 1.5em;
  text-align: center;
  color: white;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#instructions #text .title {
  font-size: 5.5em;
}

/*--------------------CONTAINER FOR CANVAS AND OVERLAYING DIVS--------------------*/
.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
  min-width: 100vw;
  margin: 0;
}

/*--------------------CANVAS LAYERS--------------------*/
#canvas-layers {
  height: 65%;
  width: 70%;
  position: absolute;
}

canvas {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 20px;
}

#layer1 {
  background-image: url("../assets/images/skybg.png");
}

#layer2 {
  display: none;
}

#layer4 {
  background-image: url("../assets/images/overlay.png");
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}

#layer5 {
  mix-blend-mode: hard-light;
}

#layer6, #layer7 {
  mix-blend-mode: color-dodge;
}

/*--------------------BROWSER WITH MUSIC PLAYLIST--------------------*/
#browser {
  padding: 2.1em 0 0 0;
  border-radius: 0.25em;
  width: 700px;
  height: 400px;
  background: #ddd;
  position: absolute;
  overflow: hidden;
  -webkit-box-shadow: 0 0.25em 0.9em -0.1em rgba(0, 0, 0, 0.4);
          box-shadow: 0 0.25em 0.9em -0.1em rgba(0, 0, 0, 0.4);
  display: none;
}

#browser .browser-navigation-bar {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 2.1em;
  position: absolute;
  top: 0;
  padding: 0.3em;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#edeaed), to(#dddfdd));
  background: linear-gradient(to bottom, #edeaed 0%, #dddfdd 100%);
  border-bottom: 2px solid #cbcbcb;
}

#browser a {
  display: inline;
}

#browser i {
  display: inline-block;
  height: 0.7em;
  width: 0.7em;
  border-radius: 0.45em;
  background-color: #eee;
  margin: 0.4em 0.15em;
}

#browser i:nth-child(1) {
  background-color: #ff564f;
}

#browser i:nth-child(1):hover {
  background-color: #ff1419;
}

#browser i:nth-child(2) {
  background-color: #ffb72a;
}

#browser i:nth-child(2):hover {
  background-color: #e6af2a;
}

#browser i:nth-child(3) {
  background-color: #25c63a;
}

#browser i:nth-child(3):hover {
  background-color: #0ae10a;
}

#browser input {
  font-size: 0.75em;
  vertical-align: top;
  display: inline-block;
  height: 1.6em;
  color: #aaa;
  width: calc(100% - 6em);
  border: 0.1em solid #E1E1E1;
  border-radius: 0.25em;
  background-color: #eee;
  margin: 0.1em;
  padding: 0 0.4em;
}

.browser-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #45090C;
  text-align: center;
}

/*--------------------NOTEBOOK--------------------*/
#notebook {
  width: 600px;
  height: 400px;
  position: absolute;
  overflow: hidden;
  display: none;
}

#notebook .book-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0em 0.5em 0.5em;
}

#notebook .book-buttons input {
  font-size: 1.1em;
  padding: 0.4em 2em;
  background: black;
  color: white;
  border: none;
  border-radius: 0.2em;
  font-family: 'Concert One', cursive;
  font-weight: 300;
}

#notebook .book-buttons input:active {
  color: lightgray;
}

#notebook .book-buttons input:hover {
  cursor: pointer;
}

#notebook .book-container {
  position: absolute;
  background-image: url(../assets/images/book.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  height: 90%;
  width: 100%;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#notebook .book-container textarea {
  font-size: 1em;
  font-family: 'Concert One', cursive;
  background: #E1DBC7;
  color: #181002;
  border: none;
  resize: none;
  height: 80%;
  width: 35%;
}
/*# sourceMappingURL=style.css.map */