* {
  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-st-1.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;

  h2 {
    color: #00cc99;
  }
}

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

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

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

h3 {
  color: #f0f0f0;
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.rossnh-link-btn {
  position: relative;
  display: block;
  max-width: 400px;
  background-color: #00cc99;
  padding: 18px 25px;
  width: 100%;
  text-align: center;
  color: #002b4d;
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 6px rgba(0, 204, 153, 0.3);
}

.rossnh-link-btn:hover {
  background-color: #00b386;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 204, 153, 0.4);
}

.rossnh-link-btn:active {
  background-color: #009973;
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
