body {
  background-color: #0c0e12;
  margin: 0;
  padding: 0;
  font-family: 'Space Grotesk';
  color: #f1f1f2;
  text-align: center;
}

.nav {
  background-color: #151921;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navlink {
  text-decoration: none;
  color: #f1f1f2;
  font-weight: 500;
  text-align: center;
}

.navbox {
  display: flex;
  text-align: center;
  gap: 50px;
}

.contact {
  color: #f1f1f2;
  text-decoration: none;
  font-size: 21px;
  position: absolute;
  right: 40px;
  font-weight: 500;
}

.home {
  color: #f1f1f2;
  text-decoration: none;
  font-size: 40px;
  position: absolute;
  left: 40px;
  font-weight: 500;
}

.landing {
  margin: 0 auto;

  top: 120px;
  bottom: 50px;

  width: 90vw;

  background-color: #151921;
  cursor: default;

  border-radius: 30px;
}

.foot {
  position: static;
  height: 50px;
  background-color: #11141a;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.oldtext {
  border: #00f0ff00 solid;
  margin-top: 100px;
}

.old {
  align-self: center;

  color: #f1f1f2;
  margin-top: 200px;
}

h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.welcomes {
  font-size: 25px;
  margin-bottom: 10px;
}

.welcomed {
  font-size: 20px;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #8299ef;
  color: white;
  padding: 15px 25px;
  border-radius: 15px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  height: 50px;
  min-width: 150px;
  align-self: flex-start;
  top: 40px;
}

.cta-button:hover {
  background-color: #4566a1;
}

.csssucks {
  margin-top: 80px;
}

.carousel {
  max-width: 600px;
  margin: 0 auto;
  background: #111111a0;
  border: 3px #f1f1f217 dotted;
  padding: 20px;
  border-radius: 1rem;
  overflow: hidden;
  color: #fff;
  position: relative;
  margin-top: 0px;
  cursor: pointer;
  overflow-anchor: none;
}

.countdown-bar {
  animation: countdown 5s linear forwards;
}

.countdown-bar.animate {
  animation: countdown 5s linear forwards;
}

@media (max-width: 800px) {
  .carousel {
    margin-left: 30px;
    margin-right: 30px;
  }
  .welcomes {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .welcomed {
    font-size: 17px;
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .cta-button {
    bottom: 20px;
  }

  .welcome {
    font-size: 40px;
  }
}

.carousel-slide {
  display: none;
  text-align: center;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  display: block;
}

.carousel img {
  max-width: 300px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0px;
}

.countdown-bar {
  height: 4px;
  background: #00f0ff;
  animation: countdown 5s linear forwards;
  margin-top: 1rem;
  border-radius: 999px;
}

@keyframes countdown {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
