body {
    background-color: #ecf0f1;
    color: #2c3e50; 
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 60px auto;
    background: #ffffff;
    padding: 40px;
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.3) 0px 10px 30px 0px;
    border-radius: 15px;
    border: 1px solid #3498db; 
    background-image: linear-gradient(135deg, #3498db, #8e44ad);
    color: white;
}

h1 {
    font-family: 'Arial', sans-serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    color: #2c3e50;
}

select {
    display: block;
    width: 80%;
    margin: 20px auto;
    padding: 12px;
    font-size: 18px;
    border-radius: 8px;
    border: 1px solid #3498db;
    background-color: #fff;
    color: #2c3e50;
    transition: background-color 0.3s;
}

select:hover {
    background-color: #3498db;
    color: white;
}

.city {
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    margin: 15px 0;
    justify-content: space-between;
    padding: 30px 20px;
    transition: all 0.3s ease-in-out;
}

.city:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.city .date {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.city .time {
    font-size: 1.6rem;
    color: #3498db;
    font-weight: bold;
}

footer {
    font-size: 1rem;
    margin-top: 40px;
    color: #7f8c8d;
    text-align: center;
}

footer a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}
