:root {
    --doc-height: 100%;
    --doc-width: 100%;
    --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 {
    width: 100%;
    width: var(--doc-width);
    height: 100%;
    height: var(--doc-height);
}

.wrapper {
    width: 100%;
    height: 100%;
    margin: 0;
}

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