:root {
    --nwt-red: #d20000;
    --black: #000;
    --white: #fff;
    --nord: 'Nord';
}

body {
    background: var(--black);
}

html {
    font-family: Arial;
    color: var(--white);
}

a {
    color: var(--white);
    
    &:hover {
        text-decoration: underline;
    }
}

section {
    max-width: 991px;
}