* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #000;
  color: #fff;
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}
.logo img {
  height: 95px;
}

.menu {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 10;
}
.menu a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.menu a:hover {
  text-decoration: underline;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease, tra
