*{
    
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
body{
    background-color: azure;
}
.container{
    width: 100%;
    max-width: 500px;
    margin: 100px auto;
    padding: 30px;
    background-color: white;
    box-shadow: 1px 1px 1px 2px ;
    border-radius: 10px;
    margin-bottom: 5px;
}
header{
    padding: 10px;
    text-align: center;
}
#selectCity{
    /* display: block; */
    width: 100%;
    font-size: 18px;
    padding: 5px;
    border-radius: 10px;
    text-align: left;
    padding-left: 0;
    color:rgba(0, 0, 0, 0.6) ;
    border: 1.5px solid;
}
h1{
    font-size: 18px;
    margin-bottom: 5px;
}
.city{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin-top: 1rem;
}
.city:last-child{
    border: none;
}
.date{
    font-size: 10px;
}
small{
    font-size: 10px;
}
footer{
    font-size: 16px;
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
}
.cityName{
    font-weight: bold;
}
.date{
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
}
.time{
    font-weight: bold;
}
.allcities{
    margin-top: 2rem;
}