body {
    background-image: url('bb.gif');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    /* background: #1f012c; */
    background-image: linear-gradient(
      45deg,
      rgba(255, 110, 255, .3) 16.666%,
      rgba(255, 110, 255, .4) 16.666%,
      rgba(225, 101, 65, .4) 33.333%,
      rgba(241, 143, 67, .4) 33.333%,
      rgba(255, 100, 255, .4) 50%,
      rgba(255, 100, 255, .4) 50%,
      rgba(87, 71, 152, .4) 66.666%,
      rgba(58, 120, 171, .4) 66.666%,
      rgba(255, 110, 255, .4) 83.333%,
      rgba(255, 110, 255, .3) 83.333%
      );
    animation: rainbow-text-simple-animation-rev 1s ease forwards;
    /* opacity: 0.7; */
    font-family: Roboto;
    text-align: left;
    /* color: white; */
    padding: 20px 15px 0px 15px;
    font-size: 30;
}

footer:hover{
    animation: rainbow-text-simple-animation 0.75s ease-in forwards;
}

h1 {
    font-size: 900%;
    letter-spacing: 12px;
    word-spacing: 30px;
    text-align: center;
    width: 100%;
    padding: -20px;
    margin: 0px;
}

span {
  letter-spacing: -12px;
  padding-right: 12px;
}

.gradient-text {
    background-image: linear-gradient(
            45deg,
            rgba(255, 110, 255, .3) 16.666%,
            rgba(255, 110, 255, .4) 16.666%,
            rgba(225, 101, 65, .6) 33.333%,
            rgba(241, 143, 67, .6) 33.333%,
            rgba(255, 100, 255, .75) 50%,
            rgba(255, 100, 255, .75) 50%,
            rgba(87, 71, 152, .6) 66.666%,
            rgba(58, 120, 171, .6) 66.666%,
            rgba(255, 110, 255, .4) 83.333%,
            rgba(255, 110, 255, .3) 83.333%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow-text-simple-animation-rev 1s ease forwards;
}

.gradient-text:hover{
    animation: rainbow-text-simple-animation 0.75s ease-in forwards;
}

.flip img {
  /* -webkit-filter: brightness(100%); */
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}

.flip img:hover {
  /* -webkit-filter: brightness(300%); */
  transform: rotateY(180deg);
}

@keyframes rainbow-text-simple-animation-rev {
    0% {
        background-size: 650%;
    }
    40% {
        background-size: 650%;
    }
    100% {
        background-size: 100%;
    }
}

@keyframes rainbow-text-simple-animation {
    0% {
        background-size: 100%;
    }
    80% {
        background-size: 650%;
    }
    100% {
        background-size: 650%;
    }
}

a:link {
    text-decoration: none;
}

#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
