:root {
    --bw-black: #000000;
    --bw-white: #ffffff;

    --bw-dark: #1a2027;
    --bw-grey: #cecece;
    --bw-light: #efefef;

    --bw-red: #c72127;
    --bw-blue: #0072b1;
    --bw-pink: #ed1651;

    --bw-yellow: #fead2e;
    --bw-green: #24b24b;

    --bw-dark: #04011b;
}

* {
    box-sizing: border-box;
}

*:not(:defined) {
    display: none;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    width: 100vw;
    height: 100vh;

    padding: 0;
    margin: 0;

    font-family: "Roboto", sans-serif;
}
