#flags-country-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    grid-auto-columns: auto;
    /* Two columns of equal width */
    column-gap: 40px;
    row-gap: 35px;
    /* Adjust the space between columns and rows */
    justify-items:center;
    align-items:center;
    padding-top: 10%;
}

.country-name-header{
    color:rgb(251, 3, 3);
    font-size:1.5rem ;
}

.country-flag{
    border-radius: 5%;
    scale:130%;
    /* min-width: 100%; */
    /* min-height: 100%; */
}

.country-name{
    border: 1px solid black;
    border-radius: 15px;
    background-color: transparent;
    color: black;
    padding: 10%;
    min-width: 100%;
    min-height: 100%;
    text-transform: uppercase;
}

.flag-correct{
    /* opacity: 90%; */
    /* filter:grayscale(1); */
    filter:brightness(.25)
}

.name-correct{
    opacity: 90%;
    /* filter:grayscale(1); */
    filter:brightness(.01);
    text-decoration:line-through;
}

.flag-cell-wrong {
    background-color: #ff0000;
}

.flag-cell-selected {
    /* background-color: #ff0000; */
    scale: 100%;
    border: 2px solid var(--fun-frenzia-color);
}

.country-flag.flag-cell-selected{
    animation: get-larger 0.25s 1 forwards;
}

@keyframes get-larger {
    from {
        transform: scale(130%);;
    }

    to {
        transform: scale(170%);;
    }
}

