body {
  font-family: sans-serif;
}

.container {
  max-width: 600px;
  margin: 10px auto;
  border-radius: 10px;
  padding: 30px;
}

header h1 {
  text-align: center;
  font-size: 33px;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.6;
}

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

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

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

.city h2 {
  margin: 0 0 5px;
  font-size: 28px;
  font-weight: 400;
}

.city-1 {
  color: #ff007b;
}

.city-2 {
  color: #ff5757;
}

.city-3 {
  color: #ff8585;
}

.date {
  opacity: 0.7;
}

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

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

footer {
  font-size: 14px;
  text-align: center;
  opacity: 0.6;
  line-height: 1.5;
  margin-top: 30px;
}

footer a {
  color: #ff007b;
}

.city-link {
  color: #808080;
  font-size: 14px;
}

@media (max-width: 576px) {

.city{
  flex-direction: column-reverse;
}
  header h1{
    font-size: 27px;
  }

select{
  font-size: 14px;
}  

  footer, .city-link{
    font-size: 12px;
    line-height: 1.5;
  }
}

