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

body {
  font-family: "Roboto", serif;
}
.container {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-image: url(../assets/imgs/bg-img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
}
.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7); /* Adjust opacity for overlay color */
  z-index: 1;
}
.para {
  font-size: 22px;
  font-weight: 400;
  max-width: 1000px;
  margin: 20px auto;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.container h1 {
  font-size: 60px;
  margin-bottom: 50px;
}
.container h3 {
  font-size: 30px;
  margin-bottom: 40px;
}
.container > div {
  position: relative;
  z-index: 2; /* Ensure content is above the overlay */
}
.footer small {
  font-size: 18px;
  font-weight: 400;
}
.footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer a {
  color: aqua;
}

@media screen and (max-width: 767px) {
  .para {
    font-size: 18px;
  }
  .container h1 {
    font-size: 50px;
  }
  .container h3 {
    font-size: 25px;
  }
}
