<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  background-image: url(/images/vacations-1569608_1280.jpg);
  background-size: cover;
  text-align: center;
}
header {
  color: white;
  margin-top: 100px;
  text-align: center;
  h1 {
    color: rgb(255, 239, 10);
  }
}

#Forecast-data {
  color: blue;
  font-size: 25px;
  background-color: #888;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 75%;
  margin: 50px auto;
}

.a-day {
  margin: 5px;
  background-color: #3498db;
  color: white;
  padding: 20px;
  border: 2px solid #444;
  border-radius: 0.5rem;
  text-shadow: 0.75pt 0.75pt 0.3125pc black;
}
.a-day div:first-child {
  color: rgb(255, 239, 10);
  font-weight: 600;
}
.a-day div:nth-child(2) {
  font-weight: 600;
}
.a-day span {
  font-size: 20px;
}

footer {
  text-shadow: 0.125pc 0.125pc 0.625pc black;
  color: #becbff;
}

.loader {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left: 4px solid #eefe04;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  z-index: 9999;
  display: none; /* Initially hide the loader */
}

/* Small */
@media (max-width: 768px) {
  footer img {
    max-width: 100%;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
</pre></body></html>