body {
  background: linear-gradient(114deg, #ffffff, #000000, #f353f8);
background-size: 700% 700%;
animation: AnimationName 14s ease infinite;
}
#navbar {
  position: fixed;
  top: 1em;
  left: 5%;
  width: 90%;
  height: 4em;
  display: flex;
  background-color: #000000;
  font-family: 'Bungee', cursive;
  color: #ffffff;
  border-style: double;
  z-index: 3;
}
.navlink {
  position: relative;
  top: -.5em;
  left: 0px;
  padding: 2em;
  margin: 0px auto;
  text-align: center;
}
a {
  color: #dbdbdb;
  text-decoration: none;
}
#nametag {
  position: absolute;
  top: 2.5em;
  left: 25%;
  width: 50%;
  height: auto;
  font-size: 18pt;
  color: #ffffff;
  text-align: center;
  animation: forward 108s infinite linear;
  z-index: 0;
  font-family: 'Karla', sans-serif;;
}
#maincont {
  position: relative;
  top: 11em;
  left: 0px;
  width: 100%;
  height: 40em;
}
#video {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
}
video {
  position: relative;
  width: 100%;
  height: 650px;
  top: 0px;
  left: 0px;
}
#vidinfo {
  position: fixed;
  top: 88%;
  left: 1%;
  width: 30%;
  height:auto;
  text-align: center;
  font-size: 10pt;
  font-family: 'Karla', sans-serif;
  animation: forward 108s infinite linear;
}
#about {
  position: relative;
  top: 22em;
  width: 55%;
  left: 22.5%;
  height: auto;
  text-align: center;
  background-color: #c1c1c1;
  border-style: double;
}
#imgindv {
  position: relative;
  top: 20em;
  width: 60%;
  left: 20%;
  height: auto;
  padding: 1em;
}
#picinfo {
  position: relative;
  width: 35%;
  left: 30%;
  text-align: center;
  top: 20em;
  animation: forward 108s infinite linear;
  font-family: 'Josefin Slab', serif;
}
#aboutpic {
  position: relative;
  top: 20em;
  width: 55%;
  left: 22.5%;
  height: auto;
  text-align: center;
  background-color: #c1c1c1;
  border-style: double;
}
@keyframes AnimationName {
    0%{background-position:0% 18%}
    50%{background-position:100% 83%}
    100%{background-position:0% 18%}
}
}
@keyframes forward {
  0% {
    color: #000000;
  }
  50% {
    color: #e9e9e9;
  }
  100% {
    color: #000000;
  }
}
