html {
  overflow-x: hidden;
  font-size: 30px;
  font-family: 'webFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  height: 100%;
}


body {
  background: linear-gradient(311deg, #41005f, #13007b);
  background-size: 400% 400%;

  -webkit-animation: backgroundMove 31s ease infinite;
  -moz-animation: backgroundMove 31s ease infinite;
  -o-animation: backgroundMove 31s ease infinite;
  animation: backgroundMove 31s ease infinite;
  
  display: flex;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;

  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
}

#P5Container {
  position: relative;
  //background-color: rgba(0, 0, 0, 0)
}

header {
  color: aliceblue;
  margin: 0px;
  margin-left: 10px;
}
footer {
  padding: 20px;
  color: aliceblue;
  margin: 20px;

  width: 94vw;

  display: flex;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;

  justify-content: flex-end;
  -webkit-justify-content: flex-end;

  float: left;

  background-image: linear-gradient(311deg, #5c5add, #12007b00);

  border-radius: 15px;
}

@keyframes homeTitleJiggle {
  0% {
    margin-left: 0px;
    color: aliceblue;
  }
  50% {
    margin-left: 40px;
    color: rgb(0, 255, 242);
  }
  100% {
    margin-left: 0px;
    color: aliceblue;
  }
}
#homeTitle {
  margin-left: 0px;
  color: aliceblue;

  font-size: calc(20px + 5vh);

  animation-name: homeTitleJiggle;
  animation-timing-function: ease-in-out;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@-webkit-keyframes backgroundMove {
  0%{background-position:0% 9%}
  50%{background-position:100% 92%}
  100%{background-position:0% 9%}
}
@-moz-keyframes backgroundMove {
  0%{background-position:0% 9%}
  50%{background-position:100% 92%}
  100%{background-position:0% 9%}
}
@keyframes backgroundMove {
  0%{background-position:0% 9%}
  50%{background-position:100% 92%}
  100%{background-position:0% 9%}
}
@keyframes backgroundMove {
  0%{background-position:0% 9%}
  50%{background-position:100% 92%}
  100%{background-position:0% 9%}
}