body {
  background-image: url("../images/snowflake.jpg");
  background-color: #e6eef2;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6; 
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */

}
h1 {
  margin-top: 225px;
  text-align: center;
  font-size: 6rem;
  color: lightblue;
  text-shadow: 0 0 5px #37c7eb, 0 0 10px #5690be, 0 0 20px #2362eb, 0 0 40px #22bbcf, 0 0 80px #1284e0;
  animation: glow 1.5s infinite alternate;
}
/* UTC time in the bottom right corner */
#utc-time {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 20px;
  letter-spacing: 1px;
  z-index: 5;
  color: lightblue;
  text-shadow: 2px 4px 5px #ffffff;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 5px #37c7eb, 0 0 10px #5690be, 0 0 20px #2362eb, 0 0 40px #22bbcf, 0 0 80px #1284e0;
    }
    50% {
      text-shadow: 0 0 10px #34b2ec, 0 0 20px #44bfd4, 0 0 40px #2dcdfd, 0 0 80px #00d4ff, 0 0 160px #1cd2df;
  }
  100% {
      text-shadow: 0 0 10px #00d4ff, 0 0 20px #0059ff, 0 0 40px #2600ff, 0 0 80px #00d4ff, 0 0 160px #1f15a8;
  }
}