/* default colors. DO NOT MODIFY, change them within ~/config */
:root {
  --primary-color: #ff0000;
  --secondary-color: #00ff00;
  --accent-color: #0000ff;
  --white-color: #ffffff;
  --black-color: #000000;
}

/* Default CSS for all elements */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  list-style: none;
  text-decoration: none;
}

/* Remove Scrollbar */
* {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

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

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth; /* Smooth scroll behavior */
}
html,
body {
  min-width: 320px;
  min-height: 240px;
  width: auto !important;
  height: auto !important;
  width: 100vw;
  height: 100vh;
  background-color: #000000;

  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
  box-sizing: border-box; /* Makes sure padding and borders are included in the element's total width and height */
}

img {
  -webkit-user-select: none; /* Chrome, Safari, newer Opera */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */
  user-select: none; /* standard */

  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

canvas {
  -webkit-user-select: none; /* Chrome, Safari, newer Opera */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */
  user-select: none; /* standard */

  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.noSelect {
  -webkit-user-select: none; /* Chrome, Safari, newer Opera */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */
  user-select: none; /* standard */

  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}
