body {
  background-color: #f9f7fe;
  font-family: sans-serif;
}

h1 {
  text-align: center;
  font-family: sans-serif;
  font-size: 36px;
}



select {
  display: block;
  width: 100%;
  font-size: 18px;
  border-radius: 4px;
  padding: 10px;
}

.container {
  max-width: 600px;
  margin: 60px auto;
  background: white;
  padding: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}


.city {
  display: flex;
  justify-content: space-between;
  align-items: center;   /* vertically center time */
  margin: 20px 0;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.2);
}

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

.city-info {
  display: flex;
  flex-direction: column; /* stack city name and date */
}

h2 {
  margin: 0 0 5px;
  font-size: 24px;   /* slightly smaller to fit */
}

.date {
  font-size: 14px;
  opacity: 0.7;
}

.time {
  font-size: 36px;   /* smaller than before */
  font-weight: bold;
  text-align: right;
}

.time small {
  font-size: 18px;
  vertical-align: middle;
  line-height: 36px;
}

select {
  display: block;
  width: 80%;         /* centered, not full width */
  margin: 0 auto 30px auto;
  font-size: 18px;
  border-radius: 4px;
  padding: 10px;
}


footer {
  text-align: center;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
}