body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  color: #ae7b2c;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  z-index: 4;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #404040;    
  background: rgba(64, 64, 64, 0.2);
  z-index: 0;
  pointer-events: none;
}


.container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  padding-top: 100px;
  color: #333;
}



.logo {
  width: 400px;
  height: auto;
}
h1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

p {
  font-size: 0.00001rem;
  color: #ae7b2c;
  margin: 10px 0;
  line-height: 1;
  font-weight: bold;
}
.links {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center buttons horizontally */
}

.links a {
    display: block;
  padding: 10px 20px;
  color: #e5d8d4;
  background-color: #202021;
  border-radius: 10px;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.3s;
  width: 100%;
  z-index: 4;
  margin-bottom: 15px; 
}

.bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  opacity: 0.5; /* Only the background gets faded */
  z-index: -1;  /* Behind all content */
}
@media (max-width: 768px) {
  .logo {
    width: 80%;
    max-width: 300px;
  }

  

  .container {
    padding: 20px;
  }

  p {
    font-size: 1rem;
  }
}

.links a:hover {
    color: #202021;
  background-color: #e5d8d4;
}
