body{
  background-color: rgb(230, 214, 245);
  font-family: sans-serif;
}

.container{
  background-color: rgb(226, 198, 202);
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
}

h1 {
  text-align: center;
  font-family: sans-serif;
  font-size: 36px;
}
h1 a {
  text-decoration: none;
  color: black;
}

select{
  background-color: rgb(196, 191, 191);
  width: 100%;
  padding: 10px;
  font-size: 18px;
  border-radius: 4px;
}

.city {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgb(0, 0, 0, 0.2);
  margin: 10px 0;
  padding: 30px 0;
}
.city:last-child {
  border-bottom: none;
}
h2 {
  margin: 0 0 5px;
  font-size: 28px;
}

.date {
 opacity: 0.7;
}

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

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

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