html {
  min-height: 100%;
}

.main-title {
  width: 100%;
  min-width: 295px;
  top: 0;
  color: white;
  background: rgba(0, 0, 0, 0.9);
  padding: 0px;
  margin: 0px auto; 
  border-radius: 0px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
  font-size: 120%;
 }

body {
  position: relative;
  min-height: 100svh;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  overscroll-behavior: none;
  background-color: #000000;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("design/index.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;

  transform: translateZ(0);
}

@media (max-width: 719px) {
  body::before {
    background-position: center top;
  }
}


 nav {
  display: flex;
  width: 100%;
  min-width: 295px;
  flex-wrap: wrap;
 }

 nav button {
  flex: 1 1 160px;                
  padding: 10px 16px;       
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 130%;
  min-width: 160px;
 }

 nav button:hover {
  background: radial-gradient(circle, rgba(0,0,0,0) -30%, rgba(0,0,0,0.5) 100%);
  text-shadow: 1px 1px 3px rgba(0,0,0,1);
 }

 .disclaimer {
  width: 35%;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  padding: 15px;
  padding-top: 0px;
  margin: 50px auto; 
  margin-top: 130px;
  margin-bottom: 0px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 110%;
 }

@media (max-width: 719px) {
  .disclaimer {
    width: 90%;
    min-width: 265px;
  }
}

 .service-advert {
  width: 35%;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  padding: 15px;
  padding-top: 0px;
  margin: 50px auto; 
  margin-top: 130px;
  margin-bottom: 0px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 110%;
}

@media (max-width: 719px) {
  .service-advert {
    width: 90%;
    min-width: 265px;
  }
}

 .service-advert button {
  background: none;
  border: none;
  color: white;
  padding: 0px;
  font-family: inherit;
  font-size: inherit;
}

 .service-advert button:hover {
  color: blue;
}

 .service-advert img {
  width: 35%;
  margin: 10px;
  text-align: center;
  position: center;
}

@media (max-width: 719px) {
  .service-advert img {
    max-width: 20%;
    min-width: 150px;

  }
}

 .service-advert ul {
  text-align: left;
}

 .main-text {
  width: 35%;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  padding: 15px;
  padding-top: 0px;
  margin: 50px auto; 
  margin-top: 130px;
  margin-bottom: 130px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 110%;
 }

@media (max-width: 719px) {
  .main-text {
    width: 90%;
    min-width: 265px;

  }
}

 .main-text button {
  background-color: rgba(0,0,0,0.5);
  color: #ffffff;
  border: none;
  border-radius: 999px; 
  padding: 1px 10px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px
 }

 
 .location {
  color: rgba(47, 208, 63, 1);
 }

 .main-text button:hover {
  background: rgba(0,0,0,0.15);
 }

 footer {
  margin-top: auto;
  color: white;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
  border-radius: 0px;
  text-align: center;
}
