body, html {
  height: 100%;
  margin: 0;
  font-family: 'Montserrat', sans-serif; /* Use the linked font or a default sans-serif */
  color: white; /* Default text color over the image */
}

.bgimg {
  background-image: url('logo.png'); /* Replace 'your-image.jpg' with your image file path */
  height: 75%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* Ensures the image covers the whole area without distortion */
  display: flex;
  align-items: center; /* Centers content vertically */
  justify-content: center; /* Centers content horizontally */

}

.middle {
  /* Optional: Add a subtle background or text shadow if text is hard to read */
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
    text-align: center;
}

h1 {
  font-size: 50px;
  margin: 0;
}

hr {
  margin: 15px auto;
  border: 1px solid white;
  width: 50%;
}

p {
  font-size: 20px;
}
