.footerContainer {
  width: 100%;
  background: #0a0b13;
  padding: 2rem 4vw;
  box-sizing: border-box;
  position: relative;
  bottom: 0;
  left: 0vw;
  height: 5vw;
}
.footerText {
  font-family: "Asgard-Thin", sans-serif;
  font-size: 1rem;
  color: #f5f7ff;
  margin: 0;
  text-align: center;
}
.tyFoot {
  bottom: -0.5vw;
  left: 80px;
  position: relative;
}
.footSpan {
  font-family: "Asgard", sans-serif;
  font-weight: lighter;
  color: #32375f;
  font-size: 1rem;
  display: block;
  position: absolute;
  bottom: 0%;
  width: 90%;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
}

span a {
  color: #b5a0d8;
  text-decoration: none;
}

span .fa {
  color: #fff600;
  margin: 0 3px;
  font-size: 10px;
  animation: pound 0.35s infinite alternate;
  -webkit-animation: pound 0.35s infinite alternate;
}

@-webkit-keyframes pound {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes pound {
  to {
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .tyFoot{
    left: 94px;
  }
  .footerContainer{
    padding: 1.5rem 4vw;
  }
}
