/* .roboto-mono-fs {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
} */

h1,
h2,
h3 {
  letter-spacing: -0.02em;
}

.stickynav {
  position: sticky;
  top: 0;
  z-index: 100;
}

body {
  font-family: "Roboto Mono", monospace;
  margin: 0;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

a {
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}

a:hover {
  transform: translateY(-2px) scale(1.05);
  color: #a5b4fc;
}

/* .card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  transition: all 0.3s ease;
} */

/* .card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.3);
} */

.back {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.card {
  width: 30vh;
  background-size: cover;
}

.gradient {
  background: linear-gradient(-90deg, rgb(10, 10, 167), #03669b); 
  animation: gradient 4s ease infinite;
  background-size: 130% 110%;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}



.gradient2 {
  background: linear-gradient(90deg, rgb(10, 10, 167), #03669b); 
  animation: gradient2 4s ease infinite;
  background-size: 130% 110%;
}

@keyframes gradient2 {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.gradient3:hover {
  background: linear-gradient(90deg, rgb(132, 0, 255), #2330ee); 
  animation: gradient3 1s ease-in-out;
  background-size: 130% 110%;
}

@keyframes gradient3 {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.image-section {
  padding: 80px 0;
}

.image-section img {
  width: 100%;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient4 {
  background: linear-gradient(180deg, #9DC1F1, #0E2354);
  animation: gradient4 4s ease infinite;
  background-size: 130% 110%;
}

@keyframes gradient4 {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.gradient5 {
  background: linear-gradient(75deg, #0E2354, #030f29);
  animation: gradient5 10s ease infinite;
  background-size: 130% 110%;
}

@keyframes gradient5 {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.gradient6 {
  background: linear-gradient(-90deg, rgb(132, 0, 255), #4f5af1); 
  animation: gradient6 6s ease-in-out;
  background-size: 130% 110%;
}

@keyframes gradient6 {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}