body {
  font-family: Roboto, Helvetica, sans-serif;
  background: transparent;
}

.weather-card {

  width: 100%;
  max-width: 340px;

  background: white;

  border: 4px solid #1BCB96;

  border-radius: 10px;

  padding: 10px 12px;

  box-sizing: border-box;

  font-family: "Roboto", sans-serif;
}

/* row holding today + tonight */

.weather-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* sections */

.section {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* divider */

.divider {
  width: 1px;
  align-self: stretch;
  background: #e6e8eb;
}

/* icons */

.icon {
  width: 36px;
  height: 36px;
}

/* text */

.label {
  font-size: 12px;
  font-weight: 600;
  color: #666;
}

.temp {
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

.desc {
  font-size: 10px;
  color: #555;
}

.weather-credit {

  margin-top: 6px;

  text-align: center;

  font-size: 10px;

  color: #999;
}

.weather-loading{
  font-size:13px;
  color:#666;
}