@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('./clash-display.css');
@font-face {
  font-family: "Notch Grotesk";
  font-weight: 300;
  src: url("../assets/fonts/NotchGrotesk-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Notch Grotesk";
  font-weight: 500;
  src: url("../assets/fonts/NotchGrotesk-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Notch Grotesk";
  font-weight: 700;
  src: url("../assets/fonts/NotchGrotesk-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Outward";
  src: url("../assets/fonts/outward-block.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background 0.3s ease, color 0.3s ease;
}

:root {
    --color-primary: #E6D32E;
    --color-secondary: #DE3971;
    --color-social: #BB9BF4;
    --color-fourth: #F4A259;
    --color-black: #0d0d11;
    --color-dark-blue: #1d203d;
    --color-text: #f5f5f5;
}

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;
}

body {
    font-family: "Notch Grotesk";
    overflow-y: auto;
    overflow-x: hidden;
}

h3 {
    font-weight: 700;
    font-size: 100px;
    color: var(--color-black);
    font-family: 'Outfit';
    letter-spacing: -2px;
}

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

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

a {
    text-decoration: none;
}

.container {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background: var(--color-primary);
    overflow-x: hidden;
}