:root {
  --text: #111;
  --bg: #EEE;
}

.header {
  margin-top: 6rem;
  text-align: center; 
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Raleway";
}

#main-logo {
  padding: 40px;
}

.footer {
  position: fixed;
  font-size: 1.0rem;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: white;
  text-align: center;
}

/*@keyframes rotation {
  0%   {rotate: 0deg;}
  100%   {rotate: 360deg;}; 
}*/

@keyframes rotation {
  100%   {rotate: 360deg;}; 
}

/*@keyframes pulse {
  0% {width:100%;background-color:#555;}
  50% {width:100%;background-color:#fff;}
  100% {width:100%;background-color:#fff;}
}*/

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

.pulse {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
  /*animation-iteration-count: infinite;
  animation-name: pulse;
  animation-duration: 2s;*/
}

.rotate {
  animation-name: rotation;
  animation-duration: 3s;
}

