body {
  background-color: #000;
  color: #B2BEB5;
  font-family: 'Space Grotesk', sans-serif;
  padding: 0 2em;
}
.container {
  position: relative;
  z-index: 1;
}

a {
  color: #B2BEB5;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
 
}
h1 {
  animation: gradient 3s linear infinite;
  background: linear-gradient(to left , #E5E4E2, #E5E4E2, #B2BEB5,  #B2BEB5, #E5E4E2);
  background-clip: text;
  background-size: 200% auto;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}
a:has(h1):hover {
  text-decoration: none;
}
h1.title:hover {
  animation-play-state: paused;
  cursor: pointer;
}
.white {
  animation: gradient 4s linear infinite;
  background: linear-gradient(to right , #B2BEB5, #E5E4E2, #E5E4E2, #B2BEB5);
  background-size: 200% auto;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
}
ul {
  list-style: none;
  padding-inline-start: 0;
}
li {
  margin: 0.3em 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
li.m10 {
  margin: 0px 0px 1.5em 0;
}

@keyframes gradient {
  0% {
    background-position: 200% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

 #particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.mask-state {
  font-weight: 700;
}

/* portfolio */

.container:nth-child(2) {
  animation-delay: 2s;
}
.container:nth-child(3) {
  animation-delay: 4s;
}
.project {
  margin: 2em 0;
  padding: 1em;
  border: 1px solid #333;
  border-radius: 10px;
}
.projec
.project h3 {
  margin-top: 0;
  color: #E5E4E2;
}
.project p {
  color: #ccc;
  line-height: 1.5;
}
.link {
  color: #E5E4E2;
}

.back-link {
  margin-bottom: 2em;
  color: #E5E4E2;
  font-size: 0.9em;
}