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

}
.container{

    max-width: 600px;
    margin: 60px auto;
    background-color: white;
    padding: 30px;
    box-shadow:10px 10px 10px rgba(0,0,0,0.4);
    border-radius: 10px;
}
h1{
    font-family: sans-serif;
    font-size: 36px;
    color: blue;
    text-align: center;
}
h2{
    margin: 0 0 5px;
    font-size:28px;
}
.city{
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    padding: 30px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.2);
}
.city: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.7 ;
}
select{
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    font-size:18px ;
}

footer{
    text-align: center;
    font-size: 18px;
    color: rgba(0,0,0,0.8);
}