body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: black;
  overflow: hidden;
  padding: 0;
  font-family: 'Raleway', sans-serif;
}

.container {
  position: relative;
}

.main-circle {
  width: 350px;
  height: 350px;
  transition: transform 1s ease;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.main-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  border-radius: 50%;
  border: 5px solid white;
  animation: pulsate 3s infinite;
}

@keyframes pulsate {
  0% {
    box-shadow: 0 0 5px #ffffff, 0 0 20px #ffffff, 0 0 10px #ffffff;
  }
  50% {
    box-shadow: 0 0 10px #ffffff, 0 0 30px #ffffff, 0 0 20px #ffffff;
  }
  100% {
    box-shadow: 0 0 5px #ffffff, 0 0 20px #ffffff, 0 0 10px #ffffff;
  }
}

@keyframes warpSpeed {
  0% {
    transform: scale(1) translateZ(0);
    opacity: 1;
  }
  100% {
    transform: scale(10) translateZ(1000px);
    opacity: 0;
  }
}

@keyframes grow {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.small-circles-container {
  display: none;
}

.small-circles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.circle-link {
  position: relative;
  width: 125px;
  height: 175px;
  transition: transform 0.3s ease-out; /* Added transition for smooth animation */
  text-decoration: none;
  text-align: center;
  margin: 10px;
  box-sizing: border-box;
  padding: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.circle-link:hover {
  transform: scale(1.2); /* Scales the entire link on hover */
}

.circle-link img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 2px solid white;
  margin-bottom: 10px;
  transition: transform 0.3s ease-out; /* Added transition for smooth animation */
}

.circle-link h6 {
  margin: 1px 0;
  color: white;
  transition: transform 0.3s ease-out; /* Added transition for smooth animation */
}


.time-display {
  position: fixed;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 6em;
  opacity: 0;
  transition: opacity 1s;
  text-align: center; /* Center align both time and date */
}

#time {
  margin-bottom: 10px; /* Space between time and date */
}

#date {
  font-size: 0.2em; /* Slightly smaller font for date */
}

@media (max-width: 480px) {
  .main-circle {
    width: 200px; /* Adjusted for smaller screens */
    height: 200px;
  }

  .circle-link {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .main-circle {
    width: 250px;
    height: 250px;
  }

  .circle-link {
    width: 80px;
    height: 80px;
  }
}

.weather-container {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  --droplet-count: 200;
}

.rain-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.raindrop {
  position: absolute;
  width: 2px;
  height: 20px;
  background: #0cf;
  opacity: 0.5;
  animation: fall 2s linear infinite;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}

.splash {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #0cf;
  border-radius: 50%;
  opacity: 0;
  animation: splash 1s linear forwards;
}

@keyframes splash {
  to {
    width: 50px;
    height: 50px;
    opacity: 0;
    transform: translate(-50%, -50%);
  }
}

.cloud-element {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.clouds {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  height: 70%;
  z-index: 2;
}

.clouds-1,
.clouds-2,
.clouds-3 {
  background-repeat: repeat-x;
  position: absolute;
  top: -100;
  right: 0;
  left: 0;
  height: 500px;
}

.clouds-1 {
  background-image: url("https://s.cdpn.io/15514/clouds_2.png");
  animation: clouds-loop-1 100s infinite linear;
}

@keyframes clouds-loop-1 {
  to {
    background-position: -1000px 0;
  }
}

.clouds-2 {
  background-image: url("https://s.cdpn.io/15514/clouds_1.png");
  animation: clouds-loop-2 100s infinite linear;
}

@keyframes clouds-loop-2 {
  to {
    background-position: -1000px 0;
  }
}

.clouds-3 {
  background-image: url("https://s.cdpn.io/15514/clouds_3.png");
  animation: clouds-loop-3 100s infinite linear;
}

@keyframes clouds-loop-3 {
  to {
    background-position: -1579px 0;
  }
}
