:root {
    --text-color: light-dark(#444,#EEE);
    --bg-color: light-dark(#EEE,#444);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    height: 100%;
}
body {
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
svg {
    fill: var(--text-color);
    width: 100%;
    max-width: 20em;
}
p {
    text-align: right;
    position: relative;
    top: -3.8em;
}
