body {
    color: purple;
}

div.block {
  background: white;
  bottom: 0;
  height: 250px;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
}

#circle1 {
  width: 40px;
  height: 40px;
  background: blue;
}

.circle {
  border-radius: 50%;
  display: inline-block;
  margin-right: 20px;
}

h1 {
  font-family: Gill Sans, Verdana;
  font-size: 11px;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  color: #00ff00;
}

p.ex {
  font-family: times, Times New Roman, times-roman, georgia, serif;
  color: rgb(29,108,14);
  margin: 0;
  padding: 0px 0px 6px 0px;
  font-size: 60px;
  line-height: 55px;
  letter-spacing: -1px;
  font-weight: bold;
}

p.verse {
  font-family: times, Times New Roman, times-roman, georgia, serif;
  color: rgb(47,87,47);
  margin: 0;
  padding: 0px 20px 6px 50px;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -1px;
  font-weight: normal;
  font-style: italic;
}

.blobBlue {
  border: 0;
  height: 30px;
  width: 30px;
  background: blue;
  border-radius: 50%;
  position: relative;
  margin: 10px auto;
  display: inline-block;
}

.blobRed {
  border: 0;
  height: 30px;
  width: 30px;
  background: red;
  border-radius: 50%;
  position: relative;
  margin: 10px auto;
  display: inline-block;
}

.row {
  border: 0;
  height: 100px;
  width: 700px;
  margin: auto;
  text-align: center;
  position: relative;
}

/* -------------------------------------------------- */
/* Blob Morphing Animation                            */
/* -------------------------------------------------- */

@keyframes morphToSquare {
  0%, 100% {
    border-radius: 50%;
  }
  50% {
    border-radius: 0%;
  }
}

/* 2nd Blob (2nd .blobBlue inside .row) */
.row div:nth-child(2) {
  animation: morphToSquare 5s infinite ease-in-out;
}

/* 3rd Blob (1st .blobRed inside .row) */
.row div:nth-child(3) {
  animation: morphToSquare 5s infinite ease-in-out;
  animation-delay: 2.5s;
}
