html,
body {
  overscroll-behavior-y: none;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #fffafc;
}

.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(255, 250, 252, 0.8), rgba(255, 250, 252, 0.8)),
    url("path-to-spa-image.jpg") center/cover;
  text-align: center;
  padding-top: 90px;
}

contact-section a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

contact-section a:hover {
  color: #d67a93;
}

nav-bar {
  display: block;
  height: 90px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
}
