/* 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-image: linear-gradient(to bottom right, #ffadad,#ffd6a5,#fdffb6,#caffbf,#9bf6ff,#bdb2ff);
  color: black;
  font-family: 'DotGothic16', sans-serif;
  height: 100%; margin: 0; background-repeat: no-repeat; background-attachment: fixed; 
}

.aboutMe {
 
  color: black;
  font-family: 'DotGothic16', sans-serif;
  text-align: center;
  background-color: RGBA(255,255,255,0.5);
  border: solid 1px skyblue;
}

.blogPost {
  background-color: RGBA(255,255,255,0.5);
  border: solid 1px skyblue;
  }

article {
  background-color: RGBA(255,255,255,0.5);
  border: solid 1px skyblue;
  margin-top: 15px;
  padding: 5px;
}

.centerPls {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotation 3s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}