body {
   font-family: "Merriweather", serif;
   background: radial-gradient(circle at 18.7% 37.8%, rgb(250, 250, 250) 0%, rgb(225, 234, 238) 90%);
}

h1 {
    text-align: center;
    font-size: 36px;
}

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

select {
    display: block;
    width: 100%;
    font-size: 18px;
    border-radius: 4px;
    background-color: radial-gradient(circle at 18.7% 37.8%, rgb(250, 250, 250) 0%, rgb(225, 234, 238) 90%);
    padding: 10px;
}

.container {
    max-width: 600px;
    margin: 60px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: radial-gradient(328px at 2.9% 15%, rgb(191, 224, 251) 0%, rgb(232, 233, 251) 25.8%, rgb(252, 239, 250) 50.8%, rgb(234, 251, 251) 77.6%, rgb(240, 251, 244) 100.7%);
}

.city {
    display: flex;
    margin: 10px 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 {
    font-size: 18px;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 600px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  select {
    font-size: 16px;
  }

  .city {
    flex-direction: column;
    align-items: flex-start;
  }

  .time {
    font-size: 36px;
  }

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