/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background: #7e3c8f;
  background: linear-gradient(90deg, rgba(126, 60, 143, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(126, 60, 143, 1) 100%);
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  color: white;
  font-family: Verdana;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* errm check please? */
.bigguy {
  text-align: center;
  padding: 10% 0px;
  /*border: 10px black solid;*/
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111;
}