body {
  background-color: black;
}

header {
  background: black;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  height: 76px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 5px solid midnightblue;
}
header #logo {
  margin: 20px;
  float: left;
  width: 200px;
  height: 50px;
  background: url(images/logo3.png) no-repeat center;
  background-size: cover;
  display: block;
}
header nav {
  float: right;
  padding: 20px;
}
header nav #menu-icon {
  background: url(images/icons8-menu-240.png);
  background-size: cover;
  display: hidden;
  width: 32px;
  height: 32px;
}
header nav ul {
  list-style: none;
}
header nav ul li {
  display: inline-block;
  float: left;
  padding: 10px;
}
header nav ul li a {
  color: deepskyblue;
  text-decoration: none;
  font-weight: bold;
}
header nav ul li a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 640px) {
  header {
    position: absolute;
  }
  header nav ul, header nav:active ul {
    display: none;
    position: absolute;
    padding: 20px;
    background: black;
    right: 10px;
    top: 65px;
    width: 35%;
  }
  header nav:hover ul {
    display: block;
  }
  header nav li {
    text-align: center;
    width: 100%;
    padding: 15px 0;
    margin: 0;
  }
  header nav #menu-icon {
    display: inline-block;
  }
}
.center {
  display: flex;
  width: 100vw;
  height: 100vh;
  background-color: black;
  background-image: url(images/i900x630f1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.center__text {
  margin: auto;
  font-family: "Montserrat", sans-serif;
  font-size: 70px;
  text-transform: uppercase;
}

.glitch {
  position: relative;
  color: white;
  mix-blend-mode: lighten;
}
.glitch:before, .glitch:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  width: 100%;
  background: black;
  clip: rect(0, 0, 0, 0);
}
.glitch:before {
  left: -1px;
  text-shadow: 1px 0 rgba(255, 0, 0, 0.7);
}
.glitch:after {
  left: 1px;
  text-shadow: -1px 0 rgba(0, 0, 255, 0.7);
}
.glitch:hover:before {
  text-shadow: 4px 0 rgba(255, 0, 0, 0.7);
  animation: glitch-loop-1 0.8s infinite ease-in-out alternate-reverse;
}
.glitch:hover:after {
  text-shadow: -5px 0 rgba(0, 0, 255, 0.7);
  animation: glitch-loop-2 0.8s infinite ease-in-out alternate-reverse;
}

@keyframes glitch-loop-1 {
  0% {
    clip: rect(36px, 9999px, 9px, 0);
  }
  25% {
    clip: rect(25px, 9999px, 99px, 0);
  }
  50% {
    clip: rect(50px, 9999px, 102px, 0);
  }
  75% {
    clip: rect(30px, 9999px, 92px, 0);
  }
  100% {
    clip: rect(91px, 9999px, 98px, 0);
  }
}
@keyframes glitch-loop-2 {
  0% {
    top: -1px;
    left: 1px;
    clip: rect(65px, 9999px, 119px, 0);
  }
  25% {
    top: -6px;
    left: 4px;
    clip: rect(79px, 9999px, 19px, 0);
  }
  50% {
    top: -3px;
    left: 2px;
    clip: rect(68px, 9999px, 11px, 0);
  }
  75% {
    top: 0px;
    left: -4px;
    clip: rect(95px, 9999px, 53px, 0);
  }
  100% {
    top: -1px;
    left: -1px;
    clip: rect(31px, 9999px, 149px, 0);
  }
}/*# sourceMappingURL=index.css.map */