:root {
    --doc-height: 100%;
    --doc-width: 100%;
    --site-lavender: #D0C3F1;
    --site-pink: #FFCCDD;
    --site-dark-gray: #2A2A2A;
    --site-cream: #FFEFC9;
    --atom-gray: #343233;
    --atom-tan: #EFDAB9;
    --atom-yellow: #FFD152;
    --atom-green: #3B9B6D;
    --atom-red: #C13F21;
    --atom-orange: #D36E2d;
    --atom-gold: #DDA032;
    --atom-steel: #78AF9F;
    --atom-blue: #659CC8;
    --atom-ice: #DEECE8;
}

html {
    width: 100vw;
    width: var(--doc-width);
    height: 100vh;
    height: var(--doc-height);
}

body {
    height: 100%;
    height: var(--doc-height);
    margin: 0;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
}

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

::-webkit-scrollbar {
    display: none;
}