:root {
  font-family: Arial, Helvetica, sans-serif;
  --main-color: lightcyan;
  --back-color: darkblue;
  --border-color: cornflowerblue;
  --forecast-color: aqua;
  --forecast-color2: cornflowerblue;
  --forecast-color3: cornflowerblue;
  --dir-back: #338;
  --dir-num: #ccf;
  --dir-border: cornflowerblue;
}
body {
  background-color: var(--back-color);
  width: 100%;
  height: 100vh;
}
.current-time {
  color: var(--main-color);
  text-align: center;
  margin-top: 0;
}
#weather {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  height: 96vh;
}
h2 {
  text-align: center;
  margin: 0.5rem;
}
.top-container {
  display: flex;
  justify-content: space-evenly;
  color: var(--main-color);
}
.top {
  border: 0.625rem solid var(--border-color);
  border-radius: 50%;
  width: 18.75rem;
  height: 18.75rem;
}
.temp-hdr {
  padding-top: 2.5rem;
}
.temp-bundle {
  text-align: center;
  margin-top: -0.625px;
}
.big-temp {
  font-size: 6em;
  display: inline;
}
.small-temp {
  display: inline;
}
#feelsLikeTemp {
  font-size: 2rem;
}
.rh {
  font-size: 3rem;
  margin-top: 2rem;
  margin-bottom: -0.125rem;
}
.wnd-header {
  margin-top: 1rem;
}
.wnd-spd {
  font-size: 2.25rem;
  margin-top: -0.375rem;
}
.wnd-dir {
  background-color: var(--dir-back);
  font-size: 3rem;
  margin: 0 auto;
  width: 8rem;
  height: 3.5rem;
  line-height: 1.25;
  border: 0.25rem solid var(--dir-border);
  text-align: center;
  color: var(--dir-num);
}
.wnd-sts {
  font-size: 1.4rem;
  margin-bottom: 0;
  color: var(--dir-num);
}
.wnd-gst {
  font-size: 2.25rem;
  margin-top: 0;
  margin-bottom: -0.25rem;
}
.forecast-container {
  display: grid;
  grid-template-columns: repeat(24, minmax(3rem, 1fr));
  justify-items: stretch;
  justify-content: stretch;
  min-width: 1221px;
}
.time-slot {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: 1px solid var(--border-color);
  text-align: center;
  color: var(--forecast-color);
  height: 1.25rem;
  font-size: 1.25rem;
  line-height: 1;
}
.forecast-slot {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: 1px solid var(--border-color);
  text-align: center;
  color: var(--forecast-color);
  height: 2.25rem;
}
.forecast-header {
  grid-column: span 24;
  color: var(--main-color);
  margin: 0;
  text-align: center;
}
.forecast-headers {
  grid-column: span 24;
  font-family: monospace;
  color: var(--main-color);
  margin-top: 0rem;
  margin-bottom: 0rem;
}
.timeTemp {
  line-height: 1.0;
  margin-top: -0.5rem;
  margin-bottom: 0;
  font-size: 1.4em;
  color: var(--forecast-color);
}
.timeIcon {
  line-height: 1.0;
  margin: 0;
  font-size: 85%;
  color: var(--forecast-color2);
}
.timeRain {
  line-height: 1.0;
  margin: 0;
  color: var(--forecast-color3);
}
.last-container {
  color: var(--dir-num);
  text-align: center;
}
@media screen and (max-height: 700px) {
  .current-time {
    font-size: 1rem;
  }
  .forecast-header {
    font-size: 1rem;
  }
  .forecast-headers {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1220px) {
  .forecast-container {
    grid-template-columns: repeat(12, minmax(3rem, 1fr));
    min-width: 38rem;
  }
  .forecast-header {
    grid-column: span 12;
  }
  .forecast-headers {
    grid-column: span 12;
  }
}
@media screen and (min-width: 721px) and (max-width:971px) {
  .top-container {
    gap: 0.25rem;
  }
  .top {
    border: 0.25rem solid var(--border-color);
    border-radius: 30%;
  }
  h2 {
    font-size: 1.3rem;
  }
  .wnd-sts {
    font-size: 1.2rem;
  }
}
@media screen and (max-width:720px) {
.current-time {
  font-size: 1rem;
}
  .top-container {
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.top-left {
  order: 3;
}
.top-center {
  order: 1;
}
.top-right {
  order: 2;
}
.forecast-container {
  display: none;
}
}