
:root {
  --blue-0: #016a67;
  --blue-1: #409391;
  --gray-0: #516768;
  --white-0: #e0f1f1;
  --white-2: white;
  --purple-0: #c3aaec;
}

h1, h2, h3, p, label {
  color: var(--white-0);
}

h3 {
  margin: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  background: var(--gray-0);
}

form {
  display: flex;
  align-self: center;
  margin: 0.75em;
}

form * {
  margin-right: .5em;
}

h2 {
  text-align: center;
}

footer {
  background: var(--blue-0);
  padding: 0.5em;
  text-align: center;
}

a {
  color: var(--white-0);
}

a:visited {
  color: var(--purple-0);
}

a:hover {
  color: var(--white-2);
}

a:active {
  text-decoration: none;
  color: var(--white-2);
}

.header {
  padding: 0.5em;
  margin: 0;
  background: var(--blue-0);
}

.main-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 860px;
  background: var(--blue-1);
}

.date-header {
  text-align: left;
  position: sticky;
  margin-left: 0.75em;
  margin-top: 0.25em;
  margin-bottom: 0;
}

.main-vertical-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.weather-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.75em;
}

.weather-card h2, p {
  margin: 0;
  white-space: nowrap;
}

.forecast-card-set {
  display: flex;
}

.forecast-date-set {
  display: flex;
  overflow-x: auto;
}

.forecast-date-set > div {
  border: black thin dashed;
}

/* @media (max-width: 860px) {
  .main-content {
    min-width: unset;
  }
} */