body {
    color: #5a229e;
    /* Alt text: purple and pink sky with soft clouds above a calm horizon, conveying a peaceful, uplifting mood */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.4)), url("./sky.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;


}

h1 {
    text-align: center;
    margin-bottom: 5px;
}

h2 {
    text-align: center;
    margin: 0 auto 20px;
}

select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 40px;
    background-color: #F2A380;
    color: #5a229e;
    border-color: #5a229e;
    ;
}

footer {
    text-align: center;
    margin-top: 15px;
}

.container {
    max-width: 600px;
    margin: 70px auto;
    padding: 20px;
    background-color: #F2A380;
    border-radius: 30px;
    box-shadow: 14px 0 30px rgba(26, 15, 46, 0.22);
}


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

}


.cityName {
    font-size: 24px;
    font-weight: 900;
}

.cityDate {
    font-family: 14px;
    line-height: 1.5;
}

.cityTime {
    font-size: 24px;
    font-weight: 900;
}

.timeDisplay {
    display: flex;
    gap: 5px;
}

small {

    font-size: 14px;
}