:root {
    --txtColor: red;
}

* {
    box-sizing: border-box;
}

html,
body,
#root {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

#output {
    color: var(--txtColor);
    text-align: center;
    margin: 20px 0 0 auto;
}

body {
    background: #f0f0f0;
}
