: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;
}

* {
    box-sizing: border-box;
}

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

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

    font-family: "Roboto", sans-serif;
    font-size: 32px;
    line-height: 24px;

    margin: 0;
    padding: 0;

    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
