*{
    margin: 0;
    box-sizing: border-box;
}

.container{
    container-type: inline-size;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    margin-top: 1em;
}


.Ralph, .Nazneen, .Suus{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    border: 2px solid black;

}

.Rosa{
    width: 50%;
    height: 200px;
    background-color: red;
}

.Duneya{
    width: 50%;
    height: 200px;
    background-color: green;
}

.Tolga{
    width: 33%;
    height: 200px;
    background-color: aqua;
}

.Justus{
    width: 33%;
    height: 200px;
    background-color: blue;
}

.Koop{
    width: 34%;
    height: 200px;
    background-color: red;
}

.Krijn{
    width: 25%;
    height: 200px;
    background-color: yellow;
}

.Joost{
    width: 25%;
    height: 200px;
    background-color: beige;
}

.Berat{
    width: 25%;
    height: 200px;
    background-color: blueviolet;
}

.Cyd{
    width: 25%;
    height: 200px;
    background-color: orange;
}

@container (max-width: 700px){

    .Tolga{
        width:50%;
    }

    .Justus{
        width: 50%;
    }

    .Koop{
        width: 100%;
    }

    .Krijn{
        width: 50%;
    }

    .Cyd{
        width: 50%;
    }

    .Joost{
        width: 50%;
    }

    .Berat{
        width: 50%;
    }

}