h1 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: rgb(43, 8, 76);
  font-size: 36px;
  text-align: center;
}
select {
  width: 100%;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  padding: 6px;
  margin-top: 5px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
select:hover {
  border-color: blueviolet;
}
body {
  background: #f0f0f0;
}
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: white;
  border-radius: 7px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1), 5px 5px 8px rgb(202, 202, 247);
}
.city {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}
.city:last-child {
  border-bottom: none;
}
h2 {
  font-size: 28px;
  margin: 0;
}
.date {
  color: rgba(0, 0, 0, 0.8);
}
.time {
  font-size: 38px;
}
.time small {
  font-size: 16px;
  vertical-align: middle;
}
footer {
  margin-top: 10px;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.8);
  background: #f1f1f1;
  padding: 10px;
  text-align: center;
}
