
:root {
  --bg-black: #000;
  --bg-light-black: #1E1E1E;
  --bg-green: #76B900;
  --bg-linear-gray-to-black: linear-gradient(133deg, #171717 0%, #000 100%);

  --text-green: #76B900;
  --text-white: #fff;
  --text-black: #0B0B0B;
  --text-light-gray: #CECECE;
  --text-gray: #C1C1C1;

  --border-white: #fff;
  --border-black: #000;
  --border-green: rgba(118, 185, 0, 0.42);
  --border-green-input: rgba(118, 185, 0, 0.21);
}

html {
  scroll-behavior: smooth;
}

body{
  background-color: var(--bg-black);
}

.wrapper {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 100vh;

  overflow: hidden;
  color: var(--text-white);
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

[class*="__container"] {
  max-width: 1330px;
  padding: 0 15px;
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}