
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #fdf6e3;
    color: #333;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffebcd;
    border-bottom: 2px solid #ccc;
}

header h1 {
    font-size: 2.5rem;
    color: #d2691e;
}

header p {
    font-size: 1.2rem;
    color: #8b4513;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.city {
    background-color: #fff8dc;
    border: 2px solid #deb887;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.city h2 {
    color: #d2691e;
    margin-bottom: 15px;
    text-align: center;
}

.city ul {
    list-style-type: disc;
    padding-left: 20px;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #ffebcd;
    border-top: 2px solid #ccc;
    margin-top: 30px;
}

footer p {
    color: #8b4513;
}
