<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
::after,
::before {
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600&amp;family=Montserrat&amp;display=swap');
html {
  font-size: 100%;
}

:root {
  --borderRadius: 0.25rem;
  --letterSpacing: 1px;
  --transition: 0.3s ease-in-out all;

  /* box shadow*/
  --shadow-1: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-2: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-3: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-4: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* fonts  */
  --headingFont: 'Roboto', sans-serif;
  --bodyFont: 'Nunito', sans-serif;
  --smallText: 0.7em;

  /* colors */
  --background-color: cadetblue;
  --background: linear-gradient(
    90deg,
    hsla(210, 53%, 15%, 0.7) 0%,
    hsla(182, 94%, 39%, 0.6) 100%
  );
  --secondaryColor: rgb(255, 153, 0);
  --secondaryColor-t: rgb(255, 153, 0, 0.6);
  --accentColor: rgba(18, 38, 58, 0.6);
  --accentColor2: rgb(6, 188, 193);
  --accentColor3: rgb(197, 216, 209);
  --accentColor4: rgb(244, 237, 234);
}

body {
  font: var(--bodyFont);
  background-color: var(--background-color);
  background: var(--background);
}

/* Navbar */
.nav-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  height: 4rem;
}
.nav-center {
  width: 100%;
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-right: 2rem;
}
.nav-logo {
  display: flex;
  align-items: flex-end;
  padding: 0 0.75rem;
}

.nav-header img {
  width: 175px;
  margin: 0;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  transition: var(--transition);
  flex-direction: row;
  align-items: center;
  /* width: 100%;  */
}

.nav-link {
  display: block;
  text-align: center;
  text-transform: capitalize;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: var(--secondaryColor);
  transition: var(--transition);
  margin-right: 1rem;
}

.nav-link:hover,
.contact-link a:hover {
  color: var(--accentColor2);
}

.contact-link a {
  padding: 0.15rem 1rem;
  color: var(--secondaryColor);
  font-weight: bold;
  letter-spacing: 1.5px;
}

.contact-link {
  margin-left: auto;
}

a {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .nav-logo {
    display: none;
  }

  .nav-link {
    font-weight: normal;
    letter-spacing: 1.5px;
    margin-right: 1rem;
  }
}

@media screen and (max-height: 950px) {
  .contact-link a {
    display: none;
  }
}
/* end of nav */

.background {
  min-height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(./images/sky-background.jpeg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#Main {
  color: #fff;
  padding: 1.2rem;
  resize: vertical;
  box-shadow: var(--shadow-4);
}

.wp-logo {
  width: 100%;
  max-width: 80px;
  margin-right: 10px;
  border-radius: 10px;
}

#Title {
  font-family: var(--headingFont);
  font-weight: bold;
  font-style: normal;
  /* font-size: 4rem; */
  color: var(--secondaryColor);
  -webkit-text-stroke-width: 1.2px;
  -webkit-text-stroke-color: var(--accentColor);
  letter-spacing: 1.5px;
  padding: 0.6rem;
  border-radius: 10px;
  background: linear-gradient(
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.1)
  );
  margin-bottom: 0.4rem;
  box-shadow: var(--shadow-4);
}

.col-sm {
  padding-top: 1em;
}

#Current {
  background: var(--accentColor);
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  resize: vertical;
  border-radius: 10px;
}

#time {
  font-size: 1.2em;
  font-family: var(--bodyFont);
  letter-spacing: 4px;
  color: white;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: var(--secondaryColor);
}

#date,
.place-container {
  -webkit-text-stroke-width: 0.7px;
  -webkit-text-stroke-color: var(--secondaryColor);
  font-weight: lighter;
}

#date {
  margin-bottom: 2rem;
}

.conditions-container {
  display: flex;
}

#Conditions {
  background-color: var(--secondaryColor-t);
  color: white;
  padding-top: 0.5rem;
  padding-left: 3rem;
  resize: vertical;
  justify-content: center;
  text-align: center;
  margin: 0.4rem 0 0.4rem;
  font-weight: bold;
  box-shadow: var(--shadow-2);
  border-radius: 10px;
}

#Current-Weather-Items {
  font-size: 0.9em;
}

.data-box {
  border-radius: 10px;
  border: 2px solid var(--accentColor);
  box-shadow: var(--shadow-3);
  font-size: 0.8em;
  font-weight: 500;
}

.future-forecast {
  display: flex;
  justify-content: start;
  border-radius: 10px;
}

#Forecast {
  background-color: var(--accentColor);
  color: white;
  /* resize: vertical; */
  font-size: 1em;
  padding-bottom: 2rem;
}

.today {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-bottom: 1em;
  box-shadow: var(--shadow-4);
  border: 1px solid var(--accentColor);
  border-radius: 10px;
  background: linear-gradient(
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1)
  );
}

.weather-forecast {
  display: flex;
  padding: 0 1rem;
}

.weather-forecast-item {
  padding: 1rem;
  margin: 0 0.7em;
  border: 1px solid var(--accentColor);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: var(--shadow-4);
}

.day {
  font-weight: bold;
  letter-spacing: 2px;
  border: 2px transparent;
  border-radius: 10px;
  background: lightslategray;
  text-align: center;
  padding: 0.2em;
}
.day-today {
  font-size: 1.3rem;
  padding: 0.5rem;
}

.temp {
  font-size: 1rem;
  text-align: center;
  margin-top: 0.2rem;
}

.temp-today {
  font-size: 1.3rem;
}

#Footer {
  margin-top: 1rem;
}

#Footer div a {
  font-size: 1em;
  color: var(--accentColor4);
}

.code-header {
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-4);
  border-radius: 10px;
  background: linear-gradient(
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1)
  );
}

.scroll-box2 {
  overflow-y: auto;
  max-height: 75vh;
  padding: 1rem;
  margin-top: 2rem;
}

/* Small devices */
@media screen and (max-width: 400px) {
  #Title {
    font-size: 1.1em;
  }

  #time {
    font-size: 0.6em;
  }

  #Current,
  #Conditions {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 580px) {
  #Title,
  #time {
    font-size: 1.2em;
  }

  #Current,
  #Conditions {
    font-size: 1.2em;
  }

  #Current-Weather-Items {
    font-size: 0.6em;
  }
}

/* Medium devices (tablets, 768px and up) */
@media screen and (max-width: 768px) {
  #Title,
  #time {
    font-size: 1.7em;
  }

  #Current,
  #Conditions {
    font-size: 1.5em;
  }
}

/* Large devices (desktops, 992px and up) */
@media screen and (max-width: 992px) {
  #Title {
    font-size: 2.5em;
  }

  #time {
    font-size: 1.3em;
  }

  #Current,
  #Conditions {
    font-size: 1.9em;
  }
}

@media screen and (min-width: 992px) {
  #Title,
  #time {
    font-size: 2.5em;
  }

  #Current,
  #Conditions {
    font-size: 2em;
  }
}

/* footer */
.page-footer {
  height: 4rem;
  background: rgba(254, 254, 254, 0.961);
  color: rgb(92, 88, 88);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.page-footer p {
  margin: 1em;
}

.footer-logo,
.page-footer a {
  color: var(--secondaryColor);
}

.page-footer a:hover {
  text-decoration: none;
}

.social-list__item {
  margin: 0 0.5em;
}

.social-list__link {
  padding: 1em;
}

@media screen and (min-width: 900px) {
  .page-footer {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 420px) {
  #Title {
    font-size: 1.7em;
  }
}

@media screen and (max-width: 708px) {
  .page-footer {
    flex-direction: column;
    padding: 3.5em;
    font-size: 0.9rem;
  }
  .page-footer p {
    margin: 0.15em;
  }
}

@media only screen and (max-width: 1200px) {
  .weather-forecast {
    overflow-y: scroll;
    padding: 0 1rem 1rem;
  }
}
</pre></body></html>