body, html {
  height: 100%;
  margin: 0;
  font-family: 'Antic', sans-serif;
  background-color: #dedede; /* Smooth gray background */
}

.bg-image {
  /* The image used */
  background-image: url("https://wanimation.com/link/cover.png");
  /* No blur effect */
  height: 20%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-text {
  color: black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60%;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers the content vertically within the .bg-text */
}

.title-with-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* Stack the image and title vertically */
  margin-bottom: 20px; /* Adjust as needed */
}

.profile-pic {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background-image: url('https://wanimation.com/link/linkedin.jpg'); /* Profile image as a background */
  background-size: cover;
  background-position: center;
  margin-bottom: 20px; /* Space between the image and the title */
}

.bg-text h1 {
  font-size: 3em; /* Adjust as needed */
  margin: 0; /* Remove default margin */
}

.button {
  display: block;
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  margin: 3px auto;
  text-decoration: none;
  border-radius: 10px;
  text-align: center;
  width: 80%;
}

.button:hover {
  background-color: #555;
}

.footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.8em;
  color: #7d7d7d;
  position: fixed; /* Keeps the footer at the bottom */
  bottom: 0;
  width: 100%;
  background-color: #f9f9f9; /* Footer background color */
}
