/* A very basic CSS reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: medium;
  src: url(./Fonts/dahlia-medium.otf);
}

html,
body {
  height: 1000vh;
  width: 100%;
  background-color: #000000;
  color: #fff;
  font-family: "Manrope", sans-serif;
}
::-webkit-scrollbar {
  color: #000;
}
p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.5;
}
h1#logo {
  opacity: 1;
  font-size: 15px;
  font-weight: 500;
}
.idx {
  opacity: 1;
}
nav {
  position: fixed;
  top: 0;
  width: 100vw;
  padding: 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.nav-links {
  display: flex;
  gap: 2em;
  cursor: pointer;
}
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 2em;
  z-index: 2;
}
.name {
  position: fixed;
  z-index: 2;
  bottom: 0;
  right: 0;
  padding: 2em;
  opacity: 1;
}
.slider-wrapper {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* style.css */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;

  /* FIX: Removed the comma after 100% */
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
  pointer-events: none;
}
