/* import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Artifika:wght@300;400;500;700&display=swap');
:root {
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
  --brand-color: #B87333;
}

@font-face {
  font-family: 'bauhmas93'; 
  src: url('Bauhaus\ 93\ Regular.ttf') format('truetype');  
}

* {
  transition: all 0.25s;
}

.shimmer {
  display: inline-block;
  color:grey;
  background: #acacac -webkit-gradient(linear, 100% 0, 0 0, from(#acacac), color-stop(0.5, #ffffff), to(#acacac));
  background-position: -50rem top; /*50px*/
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation-name: shimmer;
  animation-name: shimmer;
  -webkit-animation-duration: 2.2s;
  animation-duration: 2.2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-background-size: 50rem 100%; /*50px*/
  background-size: 50rem 100%; /*50px*/
}

@-webkit-keyframes shimmer {
    0% {
        background-position: -50rem top; /*50px*/
    }
    70% {
        background-position: 12.5rem top; /*200px*/
    }
    100% {
        background-position: 12.5rem top; /*200px*/
    }
}

@keyframes shimmer {
  0% {
      background-position: -50rem top; /*50px*/
  }
  70% {
      background-position: 12.5rem top; /*200px*/
  }
  100% {
      background-position: 12.5rem top; /*200px*/
  }
}



::-webkit-scrollbar {
  display: none;
}


.use-brand-color {
  color: var(--brand-color);
}

.font-bauhmas93 {
  font-family: 'bauhmas93';
}

.font-artifika {
  font-family: 'Artifika';
}


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



body {
  background-color: black !important;
  color: white !important;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  overflow-x: hidden !important;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}
