/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Arial', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url('./assets/sinhagad-fort-pune-india.jpg') no-repeat center center/cover;
  text-align: center;
  color: white;
}

/* Content Styling */
.content {
  background: rgba(0, 0, 0, 0.5); /* Adds a translucent background for readability */
  padding: 20px;
  border-radius: 10px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Button Styling */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff8c00;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #ff4500;
}

/* Footer Styling */
footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: white;
}
