:root {
    /* CSS HEX */
    --vintage-berry: #823151ff;
    --crimson-violet: #4c192dff;
    --onyx: #000f08ff;
    --antique-white: #faeadbff;
    --rosy-granite: #919098ff;
}

* {
    box-sizing: border-box;
}

body {
    background-attachment: fixed;
    background-image: url("scrapbook/pinkstripes.gif");
    background-repeat: repeat;
    background-size: contain;
    background-color: var(--vintage-berry);
    color: var(--antique-white);
    margin: 0;
}

h1, h2, h3 {
    color: var(--rosy-granite);
}