body{
    background-color: #f9f7fe;
    font-family: sans-serif;
}

h1{
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 35px;
}

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

select{
    display: block;
    width: 100%;
    border-radius: 5px;
    padding: 8px;
    font-size: 15px;
}

.container{
    max-width: 600px;
    margin: 60px auto;
    background-color: white;
    padding: 30px;
    box-shadow:  rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    border-radius: 10px;
}

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

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

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

.time small{
    font-size: 24px;
    vertical-align: middle;
    line-height: 48px;
}

.date{
    opacity: 0.6;
}

footer{
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
}

