  body {
           background-color: rgb(236, 209, 230);
        font-family: Arial, sans-serif;
      }
      .container {
        max-width: 600px;
        background-color: aliceblue;
        border-radius: 10px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        text-align: center;
        margin: 60px auto;
        padding: 20px;
      }
      h1 {
        font-size: 48px;
        margin-bottom: 40px;
      }
      h2 {
        margin: 0 0 5px;
        font-size: 30px;
      }
      main {
        margin-top: 50px;
      }
      select {
        width: 60%;
        font-size: 22px;
        padding: 10px;
        border-radius: 5px;
        background-color: rgb(245, 231, 242);
      }
      .city {
        margin-top: 30px;
        padding: 30px;
        display: flex;
        justify-content: space-around;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
      }
      .city:last-child {
        border: none;
      }

      .date {
        opacity: 0.7;
        line-height: 1.5;
      }
      .time {
        font-size: 50px;
        font-weight: bold;
      }
      .time small {
        font-size: 24px;
        vertical-align: middle;
        line-height: 48px;
      }

      footer {
        margin: 20px;
        font-size: 18px;
        text-align: center;
        color: rgb(0, 0, 0, 0.7);
      }