body {
  background-color: #f9f7fe;
  font-family: sans-serif;
}

.container {
  max-width: 600px;
  width: 80%;
  margin: 60px auto;
  background: white;
  padding: 30px;
  box-shadow: rgba(100, 00, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}

h1 {
  text-align: center;
  font-family: sans-serif;
  font-size: 36px;
}

h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

select {
  display: block;
  width: 100%;
  font-size: 18px;
  border-radius: 4px;
  padding: 10px;
}

.city {
  display: flex;
  margin: 20px 0;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

.city:last-child {
  border: none;
}

.date {
  opacity: 0.7;
}

.time {
  font-size: 48px;
  font-weight: bold;
}

.time small {
  font-size: 24px;
  vertical-align: middle;
  line-height: 48px;
}

footer {
  text-align: center;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 481px) {
  .container {
    max-width: 481px;
    width: 80%;
    padding-bottom: 0;
  }

  .city {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .city-date-and-time {
    margin-bottom: 1rem;
  }

  .time {
    font-size: 44px;
    font-weight: bold;
  }

  footer {
    font-size: 15px;
    width: 80%;
    margin: 0 auto;
  }
}
