body {
  background-image: url('/images/webBG.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  margin: 0;
}
.nav{
  overflow: hidden;
  background-color: white;
}
.nav a {
  float: left;
  color: DarkSlateGray;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
}
.time {
  margin: 16px;
  overflow-y: scroll;
  background-color: white;
  width:25%;
  height: 25%;
}
.nav a:hover {
  background-color: DarkSlateGray;
  color: white;
}
#home{
  float: left;
  height: 5%;
}
.recent-art{
  margin: 16px;
  overflow-y: scroll;
  background-color: white;
  width:25%;
  height: 25%;
}
.about-me{
  margin: 16px;
  overflow-y: scroll;
  background-color: white;
  width:25%;
  height: 25%;
  text-align: center;
}
.recent-art img {
  position: relative;
  left: 25%;
  width: 50%;
}
#heading{
  text-align: center;
  overflow: hidden;
  background-color: white;
}
#top-text {
    color: white;
    font-size: 40px;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;  
  }
  .blue {
    background-color: CornflowerBlue;
    width: 10px;
    height: 10px;
    margin: 0px;
    position: relative;
    bottom: 0;
  
    animation-name: rotateAnimation;
    animation-duration: 1ms; /* Firefox requires this to apply the animation */
    animation-direction: alternate;
    animation-timeline: scroll(block nearest);
  }
  .pink {
    background-color: Lightpink;
    width: 10px;
    height: 10px;
    margin: 0px;
    position: relative;
    bottom: 0;
  
    animation-name: rotateAnimation;
    animation-duration: 1ms; /* Firefox requires this to apply the animation */
    animation-direction: alternate;
    animation-timeline: scroll(block nearest);
  }
  .green {
    background-color: Aquamarine;
    width: 10px;
    height: 10px;
    margin: 0px;
    position: relative;
    bottom: 0;
  
    animation-name: rotateAnimation;
    animation-duration: 1ms; /* Firefox requires this to apply the animation */
    animation-direction: alternate;
    animation-timeline: scroll(block nearest);
  }
  @keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}