.weather-map {
  display: block;
  position: relative;
  z-index: 2;
  background-color: rgba(251, 246, 228, 0.8);
  padding: 8px;
  color: var(--secondary);
  text-align: center;
}
.weather-map .icon--weather {
  font-size: 3rem;
}
.weather-map .temp {
  font-size: 2.5rem;
  text-align: center;
}
.weather-map .temp div:not(.ca-map) {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.weather-map .ca-map img {
  width: 125px;
  height: auto;
}
@media (max-width: 768px) {
  .weather-map {
    width: 80px;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--white);
  }
  .weather-map .ca-map img {
    width: 70px;
  }
  .weather-map .icon--weather {
    font-size: 1.5rem;
  }
  .weather-map .temp {
    font-size: 1.25rem;
  }
  .weather-map .temp div:not(.ca-map) {
    font-size: 0.8rem;
  }
}