#shadowBox {
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.2);
  /* Black w/opacity/see-through */
  border: 3px solid;
}

.rainbow {
  text-align: center;
  text-decoration: bol;
  font-size: 32px;
  font-family: monospace;
  letter-spacing: 5px;
  animation: colorRotate 6s linear 0s infinite;
}

@keyframes colorRotate {
  from {
    color: #6666ff;
  }
  10% {
    color: #0099ff;
  }
  50% {
    color: #00ff00;
  }
  75% {
    color: #ff3399;
  }
  100% {
    color: #6666ff;
  }
}

body {
  background-color: lightgreen;
  animation-name: BGC;
  animation-duration: 10s;
  animation-iteration-count:infinite;
}


@-webkit-keyframes BGC {
  0% {
    background: red;
  }

  20% {
    background: orange;
  }

  40% {
    background: yellow;
  }

  60% {
    background: lightgreen;
  }

  80% {
    background: turquoise;
  }

  90% {
    background: blue;
  }

  100% {
    background: purple;
  }
}

#p1 {
  textsize: 50px; 
}

p1 {
  text-align: right
}
img {
  float: left;
}

h {
  text-align: right
}