:root {
    --default-font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.left_content {
    flex: 50%;
}
.right_content {
    flex: 30%;
}
.photos_container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 10%;
    animation: fade-out-in 1s ease;
}
.city_pictures {
    max-width: 340px;
    max-height: 340px;
}
.dollar_number {
    color:rgb(0, 167, 64);
    font-style: italic;
    font-weight: 500;
}
.custom_list-item_style {
    width: 500px;
    font-family: var(--default-font-family);
    text-transform:none;
}
@media (max-width: 895px) {
    .custom_list-item_style {
        width: 250px;
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .city_pictures {
        max-width: 250px;
        max-height: 250px;
    }
}
@media (max-width: 510px) {
    .custom_list-item_style {
        width: 170px;
        font-size: 15px;
    }
}
