body {
  background: whitesmoke;
  font-family: Georgia, "Times New Roman", Times, serif;
  display: flex;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
}

.container {
  width: 400px;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  background: radial-gradient(circle, lightblue, white);
  display: block;
  text-align: center;
  padding: 20px;
  box-shadow: 1px 2px 1px whitesmoke;
  border-radius: 8px;
  margin-bottom: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

small {
  font-size: 0.2;
}

h1 {
  text-align: center;
}

select {
  width: 90%;
  padding: 9px;
  border-radius: 6px;
  font-size: 1em;
}

.city {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px dashed black;
}

.time {
  padding-right: 10px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 10px;
}

.date {
  margin-top: -20px;
  font-size: 0.6em;
  opacity: 0.9;
}

.city:last-child {
  border: none;
}

.all-cities-link {
  padding: 10px;
  text-decoration: none;
  font-size: 1.5em;
  color: blue;
}

.all-cities-link:hover {
  color: black;
  text-decoration: underline;
}

footer {
  font-size: 0.7em;
}
footer a {
  text-decoration: none;
  color: blue;
}

footer a:hover {
  color: azure;
  text-decoration: underline;
}
