:root {
  --theme-color-light: white;
  --theme-color-dark: #000000;
  --theme-color-warning: rgba(244, 0, 0, 1);
  --theme-color-error: rgba(244, 0, 0, 1);
  --theme-main-color: hsl(186 100% 69%);
  --theme-second-color: hsl(335deg 100% 59%);
  --theme-size-bezel: .5rem;
  --theme-size-radius: 10px;
  --theme-main_font-family: Avenir;
  --theme-second_font-family: Comic Sans MS,sans-serif;
  --theme-default-cursor: default;
  --theme-cursor: pointer;
}

html, body{
	margin: 0;
	padding: 0;
    height: 100%;
	color:var(--theme-second-color);
	background-color:var(--theme-color-dark);
	overflow: hidden;
}