body {
    background-color: #f9f7fe;
}


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

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

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



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

}

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

.city:last-child {
    border-bottom: none;
}


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

.time small {
    font-size: 24px;
    font-weight: normal;
    vertical-align: middle;
}

.date {
    opacity: 0.7;
}



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