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

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0f0f0f;
  color: #fff;
  line-height: 1.6;
}

header {
  background-color: #151515;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo h1 {
  font-size: 2rem;
  color: #00ff99;
}

.logo span {
  color: #ff4444;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.8;
}

.hero-text h2 {
  font-size: 3rem;
  color: #00ff99;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00ff99;
  color: #151515;
  text-decoration: none;
  font-size: 1rem;
  margin: 10px;
}

.cta-btn.secondary {
  background-color: #ff4444;
  color: #fff;
}

.about, .technologies, .products, .join {
  padding: 50px 20px;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.tech-cards, .product-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.card, .product {
  background-color: #151515;
  padding: 20px;
  margin: 20px;
  width: 300px;
  border-radius: 10px;
}

.card h3, .product h3 {
  color: #00ff99;
}

footer {
  background-color: #151515;
  text-align: center;
  padding: 20px;
}

.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.social-links li {
  margin: 0 10px;
}

.social-links a {
  color: #00ff99;
  text-decoration: none;
}

.social-links a:hover {
  color: #ff4444;
}


.spider {
  width: 30px; /* Width of the spider */
  height: 30px; /* Height of the spider */
  position: absolute;
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Center align */
  /* background-image: url('path_to_your_spider_image.png'); */ /* Replace with your spider image */
  background-size: cover;
  animation: moveSpider 8s linear infinite; /* Slower movement (4 seconds) */
  font-size: 3rem;
}

@keyframes moveSpider {
  0% {
      top: 70%; /* Start at center vertically */
  }
  50% {
      top: 30%; /* Move up */
  }
  100% {
      top: 70%; /* Move back to center */
  }
}

