
body {
    background-color: #f9f7fe;
    font-family: sans-serif;
}
.container {
    max-width: 600px ;
    background-color: white;
    padding: 30px;
    margin: 60px auto; 
    /* the margin above is what centered the container */
    box-shadow: 10px 10px 10px rgba(0,0,0,0.4);
    border-radius: 10px;
}

#city-menu {

    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    font-size: 18px;
}
h1{
    font-family: sans-serif;
    text-align: center;
    font-size: 36px;
}
h2{
    margin: 0 0 10px;
    font-size: 28px;
}
.city {
    display: flex;
    margin: 20px 0;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px dashed grey;
}
.date{
    opacity: 0.7;
}
.time {
    font-size: 48px;
    font-weight: bold;

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


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

