@font-face {
  font-family: 'KUV';
  src: url('../cdn/fonts/KUV.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --text: #e9ebe3;
  --background: #080906;
  --primary: #e9ebe3;
  --secondary: #40475b;
  --dark: #121212;
  --light: #f5f5f7;
  --grey: #333333;
  --light-grey: #8a8a8a;
  --card-bg: #1e1e1e;
  --header-bg: rgba(18, 18, 18, 0.8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  font-family: 'KUV', sans-serif;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  pointer-events: none;
}
