/** ADD YOUR AWESOME CODES HERE **/

.round-image {
  width: 400px; /* Replace with your desired width */
  border-radius: 200px;
  margin-right: 10px;
  float: center;
}

.gradient-text {
  font-size: 50px;
  text-align: center;
  font-weight: bold;
  background: linear-gradient(
    90deg,
    #87cefa,
    #00bfff,
    #1e90ff,
    #4169e1,
    #0000cd,
    #0000ff
  );
  background-size: 400%;
  background-clip: border-box;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradient-animation 5s infinite;
  padding-bottom: 100px;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
