.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #000;
  color: #fff;
  position: relative;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.logo {
  width: 200px; /* adjust as needed */
  margin-bottom: 20px; /* add some space between logo and heading */
}

.hero h1 {
  font-size: 72px;
  margin-bottom: 40px;
  text-align: center;
}

.hero p {
  font-size: 24px;
  margin-bottom: 40px;
  text-align: center;
}

.hero .btn {
  display: inline-block;
  font-size: 18px;
  padding: 16px 40px;
  background-color: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  z-index: 9999;
}

.hero .btn:hover {
  background-color: #fff;
  color: var(--main-color);
}

.hero .btn.gold {
  background-color: #ffd700;
  color: #000;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero .btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}

.dots-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ffd700;
  border-radius: 50%;
  z-index: 2;
  animation: move linear infinite;
}

.dot:nth-child(1) {
  animation-duration: 17s;
}

.dot:nth-child(2) {
  animation-duration: 20s;
}

.dot:nth-child(3) {
  animation-duration: 12s;
}

.dot:nth-child(4) {
  animation-duration: 15s;
}

.dot:nth-child(5) {
  animation-duration: 14s;
}

.dot:nth-child(6) {
  animation-duration: 16s;
}

.dot:nth-child(7) {
  animation-duration: 10s;
}

.dot:nth-child(8) {
  animation-duration: 30s;
}

.dot:nth-child(9) {
  animation-duration: 12s;
}

.dot:nth-child(10) {
  animation-duration: 14s;
}

.dot:nth-child(11) {
  animation-duration: 16s;
}

.dot:nth-child(12) {
  animation-duration: 80s;
}

.dot:nth-child(13) {
  animation-duration: 69s;
}

.dot:nth-child(14) {
  animation-duration: 48s;
}

.dot:nth-child(15) {
  animation-duration: 61s;
}

.dot:nth-child(16) {
  animation-duration: 55s;
}

.dot:nth-child(17) {
  animation-duration: 30s;
}

.dot:nth-child(18) {
  animation-duration: 45s;
}

.dot:nth-child(19) {
  animation-duration: 40s;
}

.dot:nth-child(20) {
  animation-duration: 50s;
}

@keyframes move {
  0% {
    transform: translate(0, 0) scale(1);
  }
  10% {
    transform: translate(60vw, -30vh) scale(2);
  }
  20% {
    transform: translate(20vw, 20vh) scale(1);
  }
  30% {
    transform: translate(-20vw, -10vh) scale(0.5);
  }
  40% {
    transform: translate(80vw, 30vh) scale(1.5);
  }
  50% {
    transform: translate(-50vw, 60vh) scale(1);
  }

  60% {
    transform: translate(-20vw, -50vh) scale(0.8);
  }
  70% {
    transform: translate(50vw, -80vh) scale(1.2);
  }
  80% {
    transform: translate(0, 40vh) scale(0.7);
  }
  90% {
    transform: translate(-80vw, -10vh) scale(1.3);
  }
  100% {
    transform: translate(0, 0);
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

:root {
  --main-color: #d20120;
}

:root {
  --bg-dark-2: #1b2a2f;
}

:root {
  --bg-dark-1: #111517;
}

:root {
  --bg-light-2: #f0f0f0;
}

:root {
  --bg-light-1: #f5f5f5;
}

:root {
  --swiper-navigation-size: 44px;
}

:root {
  --swiper-theme-color: #007aff;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

::-webkit-scrollbar {
  width: 8px;
  background: black;
}

::-webkit-scrollbar-thumb {
  background: #ffd800;
  border-radius: 2px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 2px;
}

::selection {
  color: #ffd700;
}

::selection {
  background: 0 0;
  color: var(--main-color);
}
