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

body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

video {
  height: 100vh;
  width: 100%;
}

a {
  color: #fff;
  text-decoration: none; /* no underline */
  -webkit-transition: color 2s ease-out;
  -moz-transition: color 2s ease-out;
  -o-transition: color 2s ease-out;
  transition: color 2s ease-out;
}

a:hover {
  /* color: #bf0500; */
  color: red;
}

.text {
  position: absolute;
  top: 0;
  font-size: 11vw;
  color: #fff;
  background: #000;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: helvetica;
  /* text-transform: uppercase; */
  font-weight: 900;
  letter-spacing: 0.1em;
  mix-blend-mode: multiply;
}

aside {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(-45deg, #000, #310b0b, #000, #310b0b);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 2;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.open {
  opacity: 1;
  visibility: visible;
}

nav {
  text-align: center;
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
nav ul li {
  align-items: center;
  flex: 1;
  line-height: 20vh;
}
nav ul li a {
  font-family: helvetica;
  font-size: 1.5em;
  transition: all 0.5s ease;
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
}
nav ul li a:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
  transition: all 0.5s ease-in-out 0s;
}
nav ul li a:hover:before {
  visibility: visible;
  transform: scaleX(1);
}
/* nav ul li a:before {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  bottom: 0;
  left: 25%;
  background: white;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.5s ease-in-out 0s;
} */

@media screen and (min-width: 600px) {
  nav ul li a {
    font-size: 3em;
  }
}

.close {
  position: fixed;
  top: 40px;
  right: 60px;
  color: white;
  z-index: 3;
  cursor: pointer;
  font-family: sans-serif;
}
.close span,
.close span:before,
.close span:after {
  border-radius: 4px;
  height: 5px;
  width: 35px;
  background: white;
  position: absolute;
  display: block;
  content: "";
}
.close span {
  background: transparent;
}
.close span:before {
  transform: rotate(45deg);
}
.close span:after {
  transform: rotate(-45deg);
}

.outer-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 85px;
  height: 85px;
  cursor: pointer;
}
