:root {
    --my-white: #f5f5f5;
    --my-black: #050505;
    --border-style: 2px solid var(--my-black);
    --padding-outside: 20px;
    --padding-inside: 10px;
}  

html, body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-weight: normal;
    line-height: 24px;
    font-size: 16px;
}

body {
    background-color: var(--my-white);
    color: var(--my-black);
}

svg {
    width: 100%;
    height: 100%; 
    display: block;
}

a {
    color: var(--my-black);
    text-decoration-thickness: 1.6px;
    text-decoration-skip-ink: none;
}

.block {
    padding: var(--padding-inside);
    border: var(--border-style);
}

:not(.last-div-in-column) {
    border-bottom: none;
}

:not(.last-div-in-line) {
    border-right: none;
}