body {
  margin: 0;
  height: 95vh;
  font-family: Arial, sans-serif;
  background: url('ashva.png') no-repeat center center;
  background-size: 55%;
  background-color: #000;
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: flex-end; 
  align-items: center;
  text-align: center;
  padding: 1rem;

}

footer {
  position: fixed;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none; 
}

.contact-button {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease;
}

.contact-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  body {
    background-size: 90%; /* make logo larger on tablets/phones */
  }
}

@media (max-width: 480px) {
  body {
    background-size: 90%; /* even larger on very small phones */
  }
}
