html {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #bde2f6;
  height: 100vh;
}
p {
  margin: 0;
  padding: 0;
}
h1 {
  margin: 0;
  padding: 0;

}
.main-section {
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

#left-part {
  position: relative;
  width: 25%;
}

#right-part {
  position: relative;
  width: 25%;
}
#main-part {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.header-text {
  width: 100%;
  text-align: center;
  color: #1b50e9;
  font-size: 54px;
  font-weight: 600;
  margin-top: 50px;
  z-index: 1;
  pointer-events: none;
}

.buy-gem-p {
  color: #5b8ae6;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  z-index: 1;
  pointer-events: none;
}
.best-gem-p {
  color: #1041e6;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 5%;
  z-index: 1;
  pointer-events: none;
}

#left-gem {
  width: 27.4vw;
  max-width: 420px;
  height: auto;
  display: flex;
  z-index: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 33px;
  transition: all 0.5s;
  animation: rotate 12s infinite linear;
  transform: rotate(0deg);
  pointer-events: none;
  user-select: none;
}

#right-gem {
  width: 27.4vw;
  max-width: 420px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  right: 33px;
  transition: all 0.5s;
  animation: rotate 12s infinite linear;
  rotate: 270deg;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1100px) {
  #right-gem,
  #left-gem,
  #left-part,
  #right-part {
    display: none;
  }
  #main-part {
    width: 100%;
  }
}
  
@keyframes rotate {
  
  from {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(12.5deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.shit-div {
  margin: 0 auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;  
  gap: 20px;
  width: fit-content;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.ca-p {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: #0a3cdf;
  width: 100%;
}

.fallingGem {
  z-index: 0;
}

.fallingGem {
  position: absolute;
  z-index: 0;
  top: -100px;
  max-width: 128px;
  animation: fall 12s ease-in;
  user-select: none;
}

.fallingGem:hover {
  cursor: pointer;
}

@keyframes fall {
  from {
    transform: translateY(-168px) rotate(0deg);
    opacity: 100%;
  }
 to {
  transform: translateY(100vh) rotate(360deg);
  opacity: 20%;
 }
}

.links-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.link {
  font-size: 24px;
  font-weight: 500;
  color: #093cdd;
  cursor: pointer;
  text-decoration: none;
  height: 36px;
  display: flex;
  border: 1px solid #093cdd;
  background-color: #b8e6fd;
  border-radius: 8px;
  gap: 4px;
  justify-content: center;
  align-items: center;
  padding: 4px 12px;
  transition: all 0.5s;
}

.link:hover {
  background-color: #093cdd;
  color: #b8e6fd;
  transform: scale(1.2);
}

.plug-p {
  color: #1041e6;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #1041e6;
  padding: 4px 12px;
  width: fit-content;
  margin: auto;
  border-radius: 12px;
  transition: all 0.5s;
  text-decoration: none;
  z-index: 1;
}

.plug-p:hover {
  background-color: #093cdd;
  color: #b8e6fd;
  transform: scale(1.2);
  cursor: pointer;

}