:root {
  --gametools-corporate: #242424;
  --gametools-primary: #0da74b;
  --gametools-secondary: #91cc00;
  --gametools-font-weight-regular: 400;
  --gametools-font-weight-medium: 500;
  --gametools-font-weight-bold: 700;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.bg-dark {
  background-color: var(--gametools-corporate) !important;
}

.text-dark {
  color: var(--gametools-corporate);
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/Dots.png), linear-gradient(var(--gametools-secondary), var(--gametools-primary));
  background-position-x: center;
  background-position-y: bottom;
  background-size: auto 70%, auto;
  background-repeat: no-repeat;
  z-index: -1;
}

body {
  margin-bottom: 60px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: var(--gametools-font-weight-regular);
}

a, a:visited {
  color: white;
}

a:hover, a:active {
  color: var(--gametools-secondary);
}

a.imglink:hover, a.imglink:active {
  filter: brightness(0) saturate(100%) invert(77%) sepia(76%) saturate(2281%) hue-rotate(29deg) brightness(94%) contrast(101%);
}

h1 {
  font-size: 3rem;
  font-weight: var(--gametools-font-weight-bold);
}

h2 {
  font-size: 2rem;
  font-weight: var(--gametools-font-weight-regular);
}

h3 {
  font-size: 1.5rem;
  font-weight: var(--gametools-font-weight-regular);
}

h4 {
  font-size: 1.2rem;
  font-weight: var(--gametools-font-weight-regular);
}

.text-regular {
  font-weight: var(--gametools-font-weight-regular);
}

.text-medium {
  font-weight: var(--gametools-font-weight-medium);
}

.text-bold {
  font-weight: var(--gametools-font-weight-bold);
}

.navbar-brand {
  font-weight: var(--gametools-font-weight-medium);
}

.nav-link {
  color: var(--gametools-secondary);
  font-weight: var(--gametools-font-weight-medium);
}

.navbar-dark .navbar-nav .nav-link {
  color: white;
}

  .navbar-dark .navbar-nav .nav-link.active {
    color: var(--gametools-secondary);
  }
