@font-face {
    font-family: 'Base';
    font-style: normal;
    font-weight: 400;
    src: url("PPObjectSans-Regular.woff2") format('woff2');
}

@font-face {
    font-family: 'Heading';
    font-style: normal;
    font-weight: 400;
    src: url("DrukWide-SuperItalic-Trial.woff2") format('woff2');
}

:root {
  --font-primary: 'Base';
  --font-secondary: 'Heading';

  --color-text: #fff;
  --color-text-secondary: #eaeaea;

  --color-bg: #000;
  --color-bg-secondary: #131416;

  --color-callout: #24262a;

  --gradient : linear-gradient(to right, #10B981, #FACC15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  width: 100vw;
  height: 100%;
  overflow: hidden;
}
body {
  width: 100vw;
  height: auto;
  font-family: var(--font-primary);
  background-color: var(--color-bg);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

a,
p,
span {
  text-decoration: none;
  font-size: 13px;
  color: var(--color-text);
}

h2 {
  font-weight: 500;
  font-size: 80px;
  color: var(--color-text-secondary);
  letter-spacing: -2px;
  line-height: 100%;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*.container {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  background: var(--color-bg);
}
*/
.callout {
  width: max-content;
  padding: 0.5em 1em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.125);
  border-radius: 12px;
  margin-bottom: 2em;
}
