body {
  background-color: rgb(19, 31, 21);
  color: rgb(247, 233, 243);
}
.Container {
  max-width: 600px;
  background-color: white;
  margin: 0 auto;
  padding: 30px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
select {
  width: 78%;
  padding: 10px;
  margin: 60px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.City {
  /*flex makes time and date next to each*/
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 20px;
}
.City:last-child {
  border-bottom: none;
}
.Time {
  font-size: 24px;
  font-weight: bold;
}
.Time small {
  font-size: 14px;
  vertical-align: middle;
}
.Date {
  font-size: 16px;
  color: gray;
}
h1 {
  text-align: center;
  color: rgb(72, 234, 51);
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
footer {
  text-align: center;
  margin-top: 20px;
}
