html, body {
    margin: 0;
    padding: 0;
    background: black;
}

:root {
    --red: #ED2938;
    --white: #FFF;
    --blue: #002495;
    --flag-height: 150px;
}

.flag-france {
    display: flex;
    height: var(--flag-height);
    width: calc(var(--flag-height) * 3/2);
    margin: 2em auto; 
}

.stripe {
    flex-grow: 1;
}


.blue {
    background: var(--blue);
}

.white{
    background: var(--white);
}

.red{
    background: var(--red);
}