body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: blue;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 15px solid rgba(128, 128, 128, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff0000;
  position: fixed; /* Ensures it stays in the same place regardless of scroll */
  left: 0; /* Aligns the circle to the left */
  bottom: 0; /* Aligns the circle to the bottom */
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  transition: border-color 0.1s ease-in;
}

.circle span {
  text-align: justify;
  font-size: 2.5rem;
  line-height: 1.5;
  color: #e22929;
}

.circle .time {
  font-size: 2.5rem;
  font-weight: bold;
  color: hsl(91, 100%, 47%);
}

/* Media Queries for Responsiveness */

/* Small screens (phones) */
@media (max-width: 600px) {
  .circle {
    width: 250px;
    height: 250px;
  }

  .circle span {
    font-size: 1.5rem;
  }

  .circle .time {
    font-size: 1.5rem;
  }
}

/* Medium screens (tablets) */
@media (min-width: 1024px) and (max-width: 1024px) {
  .circle {
    width: 300px;
    height: 300px;
    left: 40%;
  
  }

  .circle span {
    font-size: 2rem;
  }

  .circle .time {
    font-size: 2rem;
  }
}

/* Large screens (default styling applies) */
@media (min-width: 1025px) {
  /* No additional changes; default styles apply */
}
