html {
 background-color:#83C1F6;
 font-family:Helvetica,sans-serif;
 text-align:center;
}
.pageheaders {
  text-align:center;
  font-family:Helvetica,sans-serif;
}
#countdown {
  font-size:35px;
}
#firstContainer {
  position:relative;
}
#animation1 {
  height:300px;
  width:200px;
  position:relative;
  background-color:#D81389;
  border-style:inset;
  border-width:5px;
  animation-name:anim1;
  animation-duration:6s;
  animation-delay:11s;
  animation-iteration-count: 5;
}
#animation2 {
  height:150px;
  width:150px;
  position:relative;
  background-color:#102063;
  animation-name:anim2;
  animation-duration:6s;
  animation-delay:11s;
  animation-iteration-count: 5;
}
#animation3 {
  height:200px;
  width:200px;
  background: linear-gradient(purple, yellow);
  position:relative;
  animation-name:anim3;
  animation-duration:6s;
  animation-delay:11s;
  animation-iteration-count: 5;
}
#animation4 {
  height:200px;
  width:500px;
  position:relative;
  background: linear-gradient(to left, pink , blue);
  animation-name:anim4;
  animation-duration:6s;
  animation-delay:11s;
  animation-iteration-count: 5;
}
@keyframes anim1 {
    25% {background-color:#8C0EB2;}
    50% {background-color:blue;}
    75% {background-color:#8C0EB2;}
    100% {background-color:#D81389;}
}
@keyframes anim2{
  25% {background-color:purple; left:300px; bottom:0px;}
  50% {background-color:red; left:300px; bottom:300px;}
  75% {background-color:blue; left:0px; bottom:300px;}
  100% {background-color:#102063; left:0px; bottom:0px;}
}
@keyframes anim3{
  25% {background: linear-gradient(purple, green); height:150px; width:150px;}
  50% {background: linear-gradient(purple, blue); height:100px; width:100px;}
  75% {background: linear-gradient(purple, navy); height:150px; width:150px;}
  100% {background: linear-gradient(purple, green); height:200px, width:200px;}
}
@keyframes anim4{
  25% {background: linear-gradient(to left, pink, blue); border-radius:50px;}
  50% {background: linear-gradient(to left, red, blue); border-radius:100px;}
  75% {background: linear-gradient(to left, orange, blue); border-radius:50px;}
  100% {background: linear-gradient(to left, pink, blue); border-radius:0px;}
}
