#menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0vh;
}

.section-subtitle{
    text-align: center;
}

.city-title{
    text-align: center;
}

#citys {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.city {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    gap: 18px;
    width: 500px;
    padding: 25px;
    background-color: #ffffff;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.city-heart {
    position: absolute;
    background-color: #73a8ed ;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.563rem;
    color: #fff9ea;
    width: 70px;
    height: 70px;
    right: -10px;
    top: -10px;
    border-radius: 0px 37.5px 0px 42.5px;
}

.city-description{
    color: #434343;
    text-align: center;
}

@media screen and (max-width: 800px) {
    #citys {
        flex-wrap: wrap;
        justify-content: center;
    }

    .city {
        width: 50%;
    }
}
