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

:root { 
    --white: #fff;
    --red: #FF0002;
    --flag-hw: 200px;
}

.flag-swiss{
    height: var(--flag-hw);
    width: var(--flag-hw);
    background: var(--red);
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cross1{
    height: calc(var(--flag-hw) * 3/16);
    width: calc(var(--flag-hw) * 5/8);
    background: var(--white);
}

.cross2{
    height: calc(var(--flag-hw) * 5/8);
    width: calc(var(--flag-hw) * 3/16);
    background: var(--white);
    position: absolute;   
}