*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

@font-face {
  font-family: "NeueCorp";
  src: url("./PPNeueCorp-NormalMedium.woff") format("woff");
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

html, body {
  margin: 0;
  padding: 0;
  background: black;
  height: 100%;
  overflow: hidden;
  font-family: sans-serif;
  cursor: url('./cursor.png') 1 38, auto;
  font-family: 'NeueCorp', sans-serif;
}

#nav {
  position: absolute;
  display: flex;
  align-items: center;
  top: 5vh;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  z-index: 10;
}

#nav #logo {
  margin-right: 4em;
}

#nav img {
  display: block;
  width: 15em;
}

#nav #shop {
  display: block;
  color: #FF0647;
  font-size: 1.2em;
  line-height: 1em;
  text-decoration: none;
  text-transform: uppercase;
}

#nav #shop:hover {
  text-decoration: underline;
}

#nav #shop span {
  display: block;
  font-size: .5em;
  font-style: italic;
  line-height: 1.2em;
}

.click-zone {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 5;
}

.left { left: 0; }
.right { right: 0; }

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}
