:root {
  color-scheme: dark;
  --base: #0b0b0b;
  --logo: #bdbdbd;
  --text: #dedede;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--base);
  color: var(--text);
  font-family: "Rajdhani", "Segoe UI", sans-serif;
}

.landing {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 56px);
  background: var(--base);
}

.backdrop {
  position: absolute;
  inset: 0;
  background-image: url("assets/Wallpaper web.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0b0b0b;
  filter: saturate(0.9);
  z-index: 0;
}




@media (prefers-reduced-motion: reduce) {
  .backdrop {
    animation: none;
  }
}
