@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: rgb(216, 216, 216);
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-color: #000000;
  cursor: auto;
  overflow-y: hidden;
}

body.portfolio-active {
  cursor: none
}


html {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "degular", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #fff;
}

/* Split line wrapper (REQUIRED) */
.ad-line-wrapper {
  display: block;
  overflow: hidden;
}

.ad-heading,
.ad-para {
  will-change: transform, opacity;
}


.cursor {
  position: fixed;
  top: 0;
  left: 0;

  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;

  pointer-events: none;
  z-index: 999999;

  transform: translate(-50%, -50%);
  will-change: transform;
}


.cursor-open {
  position: fixed;
  pointer-events: none;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(25px);
  color: #fff;
  font-size: 15px;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .25s ease, transform .3s cubic-bezier(.22, 1, .36, 1);
  z-index: 9999;
}

body.portfolio-active .cursor-open {
  opacity: 1;
  transform: scale(1);
}























