body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Mazda Type';
}
p, a{
	padding: 0;
	margin: 0;
}

.bg-image {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('../images/background2.png'); /* Replace with your image path */
  background-size: cover;
  background-position: center center;
  background-color: #604829;
  z-index: 1;
}
.bg-grdi-top{
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw;
  height: 60vh;
  background: #101010;
  background: linear-gradient(180deg,rgba(16, 16, 16, 1) 0%, rgba(16, 16, 16, 0) 100%);
  background-size: cover;
  background-position: center center;
  z-index: 4;
  opacity: 0.75;
}
.bg-grdi-botm{
  position: fixed;
  bottom: 0; 
  left: 0;
  width: 100vw;
  height: 40vh;
  background: #101010;
  background: linear-gradient(0deg,rgba(16, 16, 16, 1) 0%, rgba(16, 16, 16, 0) 100%);
  background-size: cover;
  background-position: center center;
  z-index: 3;
  opacity: 0.75;
}

/* Mazda Type fallback font */
@font-face {
  font-family: 'Mazda Type';
  src: local('Roboto'), local('Arial'), sans-serif;
}

.overlay-text-box {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  z-index: 5;
}

.overlay-heading {
  color: #101010;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin: 0;
}

.overlay-paragraph {
  color: #101010;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
}
.overlay-heading.white, .overlay-paragraph.white{
	color: #ffffff;
}
.overlay-disclaimer-box{
  position: absolute;
  bottom: 30px;
  left: 30px;
  transform: translateX(30px);
  width: 360px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 6;
}
.overlay-disclaimer-box p{
	font-size: 12px;
	color: #fff;
	max-width: 450px;
}