/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@900&display=swap');

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Customizing Scroll Bar */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: white;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 1);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(250, 250, 250, 0.3);
  border-radius: 10%;
}
/* Customzing scroll bar for forefox */
@supports (scrollbar-color: grey black) {
  * {
    scrollbar-color: rgba(250, 250, 250, 0.3) rgba(0, 0, 0, 0.1);
    scrollbar-width: thin;
  }
}

/* Selection  */
::-moz-selection {
  /* color: rgb(35, 35, 35); */
  background: rgba(230, 230, 230, 0.15);
}
::selection {
  /* color: rgb(35, 35, 35); */
  background: rgba(230, 230, 230, 0.15);
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* BASIC PROPERTIES */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
:root {
  --colr--white: rgb(245, 245, 245);
  --text-bg-blur: 1.8px;
  --text-bg-brightness: 0.8;
  --text-shadow-color: rgba(34, 34, 34);
  --canvas-bg-blur: 0.7px;
  --canvas-bg-brightness: 0.85;
}

html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: rgb(34, 34, 34);
  overflow-x: hidden;
}
