body {
  background-color: var(--dark);
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

html{
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .displayText {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}

::-moz-selection {
  background: var(--yellow);
  color: var(--text-dark);
}
::selection {
  background: var(--yellow);
  color: var(--text-dark);
}

/* Base utility classes for containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

a, button {
  cursor: pointer;
}

