* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "PP Neue Montreal";
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

p,
a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 2em;
  display: flex;
  align-items: center;
  z-index: 2;
}

nav > div {
  flex: 1;
}

.links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}

.shop {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2em;
}

.copy {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 100vw;
  padding: 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100vw;
  padding: 2em;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slide-active {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide-next {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-next .slide-next-img {
  width: 250px;
  height: 350px;
  clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
}

.slider-content {
  position: absolute;
  left: 2em;
  bottom: 0em;
  width: 100%;
  height: 175px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}

.slider-content-active {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slider-content-next {
  position: absolute;
  top: 200px;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

h1 {
  text-transform: uppercase;
  font-family: "Timmons NY 2.005";
  font-size: 150px;
  font-weight: lighter;
  color: #fff;
}

h1 span {
  position: relative;
}

@media (max-width: 900px) {
  .links,
  .shop,
  footer {
    display: none;
  }

  .logo {
    justify-content: center;
    text-align: center;
  }
}
