body {
    background-color: #f5f5f5;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
}

.cities h2 {
    text-align: center;
    margin-bottom: 20px;
}

.city-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.city {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 275px;
}

.city > img {
    border-radius: 100%;
    margin-bottom: 20%;
}

.highlights span {
    background-color: #ffd966;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: smaller;
}

.nickname {
    font-style: italic;
    color: #666;
}

.facts {
    padding: 20px;
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city:hover {
    transform: translateY(-5px);
    transition: 0.2s ease;
}