.container{
    background-color: aliceblue;
    margin:0 auto;
    display: block;
    max-width:700px;
    height:500px;
    border-radius:20px;
    padding:20px;
    box-shadow: 10px 10px 10px rgb(128, 127, 127);
}
select{
    width:100%;
    display: block;
    border-radius: 3px;
    height:50px;
    font-size: 25px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body {
    background-color: #f9f7fe;
    font-family: sans-serif;
}

h1 {
    text-align: center;
    font-family: sans-serif;
    font-size: 36px;
}

h2 {
    margin: 0 0 5px;
    font-size: 28px;
}

.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 {
    text-align: center;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
    margin-top:30px;
}