body {
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
}

.indChar {
  animation: rt 1s 1 linear;
  opacity: 0;
  animation-fill-mode: forwards;
}

.font400 {
  font-weight: 400 !important;
}

.nav-link {
  color: #888888;
  letter-spacing: 2px;
  font-size: 14px;
}

.nav-link:hover {
  color: #548da8;
}

.nav-link:hover::after, .nav-link:hover::before {
  opacity: 1;
}

.nav-link:before {
  content: "\263C";
  margin-right: 4px;
  color: #cecece;
  opacity: 0;
  transition: opacity 200ms linear;
}

.nav-link:after {
  content: "\263C";
  margin-left: 4px;
  color: #cecece;
  opacity: 0;
  transition: opacity 200ms linear;
}

p {
  color: #ffffff;
  letter-spacing: 0px;
}

#mouse {
  filter: invert(50%);
  animation: flick 800ms infinite linear;
}

@keyframes flick {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes rt {
  0% {
    opacity: 0;
  }
  50% {
    transform: rotateZ(180deg) translateX(-200px);
  }
  100% {
    transform: rotateZ(360deg);
    opacity: 1;
    color: #ffe766;
  }
}

#bottomNav {
  transition: all 300ms linear;
}

@media screen and (max-width:752px) {
  #bottomNav {
    transform: translateY(100%);
    opacity: 0;
  }
}

div {
}

