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

.rossnh {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding: 10px;
}
.rossnh::before {
  z-index: -1;
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/bg-img-2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.rossnh::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  /* background-color: rgba(255, 255, 255, 0.6); */
  backdrop-filter: blur(10px) contrast(0.8);
}

.rossnh-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.rossnh-footer-links {
  position: absolute;
  bottom: 0;

  a {
    color: #000;
    text-decoration: none;
    font-weight: 700;

    &:hover {
      text-decoration: underline;
    }
  }
}

h3 {
  color: #59007a;
  font-size: 24px;
  font-weight: 700;
}

.rossnh-link-btn {
  position: relative;
  display: block;
  max-width: 400px;
  /* background-color: #59007a; */
  background-color: #4b4e55;
  padding: 16px 20px;
  width: 100%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 30px;
  transform: scale(1);
  border-radius: 16px;
  transition: transform 0.4s ease;

  &:hover {
    transform: scale(1.02);
  }
}

.flare {
  position: absolute;
  top: 0;
  height: 100%;
  width: 25px;
  transform: skewX(-45deg);
  animation: flareAnimation;
  left: 80%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.4)
  );
  animation: flareAnimation 3s infinite linear;
}

@keyframes flareAnimation {
  0% {
    left: 10%;
  }
  100% {
    left: 80%;
  }
}
/* @media (max-width: 900px) {
  .rossnh::before {
    background-image: url("/img/bg-st-2.png");
  }
}
@media (max-width: 635px) {
  .rossnh::before {
    background-image: url("/img/bg-st-3.png");
  }
} */
