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

html,
body {
  width: 100vw;
  height: 100vh;
  background: #0a0a0a;
}

nav {
  position: fixed;
  width: 100vw;
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  z-index: 10000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo a,
.item a {
  color: #fff;
  text-decoration: none;
  font-family: "Neue Montreal";
  font-size: 14px;
}

#btn {
  /* background: rgb(60, 60, 252); */
  background: #fff;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-left: 4rem;
}

#btn a {
  color: #000;
}

i {
  font-size: 20px;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pill {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(0%, -50%);
  width: 300px;
  height: 300px;
}

.pill img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: z-index 0.5s, opacity 0.5s;
  opacity: 0;
}

.pill img[data-id="1"] {
  z-index: 10;
  opacity: 1;
}

.links {
  padding: 40rem 8rem;
  height: 240vh;
  overflow: hidden;
}

.menu a {
  text-decoration: none;
  font-family: "PP Neue Montreal";
  font-size: 5rem;
  letter-spacing: -0.2rem;
  color: rgb(80, 80, 80);
  transition: all 0.3d ease-in-out;
}

.menu a:hover {
  color: #fff;
}
