*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #f9f7fe;
    font-family: sans-serif;
}
.container{
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
    box-sizing: 0px 10px 30px rgba(0, 0, 0, 0.15);
}
select{
    display: block;
    width: 100%;
    border-radius: 4px;
    padding: 10px;
    font-size: 16px;
}
h1{
    text-align: center;
    font-family: sans-serif;
    line-height: 2;
    margin-bottom: 20px;
}
.city{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.city:last-child{
    border: none;
}
.time{
    font-size: 38px;
    font-weight: bold;
}
small{
    font-size: 24px;
    vertical-align: middle;
}
.date{
    opacity: 0.7;
    margin-top: 5px;
}
footer p{
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media (max-width:576px)
{
    .container{
        padding: 20px 15px;
        margin: 20px auto;
    }
    .time {
        font-size: 28px; /* Scales down the clock font so it doesn't clip */
    }

    small {
        font-size: 14px;
    }
    
    h2 {
        font-size: 20px;
    }

}