@import url("https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap");
@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&family=Poppins:wght@600&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: "ABeeZee", sans-serif;
  color: white;
}

:root {
  --background: #070707;
  --background-link: #da4f79;
  --primary: #00e09b;

  font-size: 10px;
	
	scroll-behavior: smooth;
}

@media (max-width: 600px) {
  :root {
    font-size: 8px;
  }
}

body {
  background-color: var(--background);
  background-image: url("../themes/images/background.png");
  background-repeat: no-repeat;
  background-size: cover;
}

img,
a {
  display: block;
  width: 100%;
}
