a{
text-decoration: none;
}
h1{
font-size: 1.9rem;
background: rgba(0,0,0,0) !important;
}
h2 {
  font-size: 1.35rem;
}
#website-footer a,
.skip_to_main_content {
  color: #000;
  background: #fff;
}
.landing {
  background: rgba(255, 255, 255, 0.7);
}
.landing_logo {
  display: none;
}
.landing_nav img {
  height: auto !important;
}
.stackable-block h1 {
  color: #000;
  text-align: center;
}
.center-box-wrap {
  margin: 0;
  height: 100vh; 
  display: flex;
  justify-content: center; 
  align-items: center;
}
.center-box {
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin: 0 auto;
}
.center-box h1,
.center-box h2 {
  color: #000;
  margin: 10px 0;
}
.button-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
  flex-wrap: wrap; 
}
.btn1 {
  width: 48%; 
max-width: 220px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 30px;
  background: #BF984A;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn1 small {
  font-size: 0.8em;
  font-weight: normal;
  text-transform: none;
}
.btn1:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
.btn1:focus {
  border: 2px solid red;
}
.website-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  overflow: hidden; 
}
.website-background img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center;
}
.landing-link{
display: block;
color:#000;
margin: 16px auto 0px auto;
}
@media (max-width: 600px) {
  .button-row {
    flex-direction: column;
    gap: 10px;
  }
  .btn1 {
    width: 100%;
}
}