body{
  background: wheat;
  color: black;
}

.container{
  background: white;
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 10px ;
  box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.2);
}

select{
  display: block;
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border-radius: 5px;
}
h1 {
  text-align: center;
  font-family: sans-serif;
  font-size: 36px;
}

h2{
font-size: 28px;
margin:0 0 6px;
}

.city{
display: flex;
justify-content: space-between;
margin: 10px;
padding: 20px 0;
border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

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

.date{
  opacity: 0.6;
}

.time{
  font-size: 45px;
  font-weight: bold;
}

.time small{
  font-size: 24px;
  vertical-align: middle;
}


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