/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.light{
	font-weight: 100;
}
.bold{
	font-weight: 700;
}
.bolder{
	font-weight: 900;
}
a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
    font-size: inherit;
}

body {
    margin: 0;
    min-height: 100vh;
    background-color: var(--seasalt);
    display: flex;
    flex-flow: row;
}

:root {
    --seasalt: #f8f9faff;
    --antiflash-white: #e9ecefff;
    --platinum: #dee2e6ff;
    --french-gray: #ced4daff;
    --french-gray-2: #adb5bdff;
    --slate-gray: #6c757dff;
    --outer-space: #495057ff;
    --onyx: #343a40ff;
    --eerie-black: #212529ff;
}
*{
	box-sizing: border-box;
    user-select: none;
}

@media (max-width: 480px) {
    html { font-size: 2px; }
}

@media (min-width: 481px) and (max-width: 767px) {
    html { font-size: 4px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    html { font-size: 6px; }
}

/* Laptops */
@media (min-width: 1025px) and (max-width: 1366px) {
    html { font-size: 8px; }
}

/* Desktops */
@media (min-width: 1367px) {
    html { font-size: 10px; }
}
