body {
    background-color: #D799C3;
    background-image: linear-gradient(to bottom, #D799C3, #DA9EC7, #D393BF);
    color: white;
    font-family: 'Roboto', sans-serif;
}

.flags-wrap {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px 30px;
    width: fit-content;
    justify-self: center;
    font-size: 14px;
    >* .country-name {
        display: none;
    }
    >a {
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .flags-wrap {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .flags-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        >* .country-name {
            display: block;
            line-height: normal;
            font-size: 13px;
        }
        >a {
            justify-content: start;
        }
    }
}

@media (min-width: 1400px) {
    .flags-wrap {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.flowers {
    display: flex;
    gap: 0 80px;
    >div {
        position: relative;
        min-width: 90px;
        > img {
            position: absolute;
            max-height: 650px;
            width: auto;
        }
    }
}

.mob-flower {
    padding-right: 30px;
}
@media (min-width: 460px) {
    .mob-flower {
        padding-right: 60px;
    }
}

@media (min-width: 1530px) {
    .display-img {
        display: block !important;
    }
    .hide-img {
        display: none !important;
    }
}

.dropdown-toggle::after {
    color: white;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: white;
    background-color: #D799C3;
}