body {
    background-color: #f9f7fe;
    font-family: "Roboto", sans-serif;
}
.container {
    max-width: 600px;
    margin: 60px auto;
    background-color: white;
    padding: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
}

h1 {
    text-align: center;
    font-family: sans-serif;
    font-size: 40px;
}

h2 {
    font-size: 30px;
    margin: 0 0 10px;
}

.cities {
    display: flex;
    justify-content: space-between;
    padding: 25px 0 15px;
    border-bottom: 1px dashed rgb(208, 208, 208);
}

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

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

small {
    font-size: 20px;
    vertical-align: middle;
}

.date {
    opacity: 0.5;
}

select {
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
}

footer {
    text-align: center;
    color: rgb(152, 152, 152);
}

.allCitiesLink {
    color: #885df1;
    font-family: "Roboto", sans-serif;
    margin-top: 20px;

}