body {
  animation: changeBackground 10s ease-in-out infinite;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

@keyframes changeBackground {
  0% {
    background-color: white;
  }
  50% {
    background-color: pink;
  }
  100% {
    background-color: white;
  }
}

/* Centered link styling */
.center-link {
  text-decoration: none;
  background-color: #333;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.center-link:hover {
  background-color: #555;
}


/* Style the centered box */
.center-box {
  background-color: #fff;
  padding: 40px 60px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  text-align: center;
}

/* Style the link to look like regular text with a hover effect */
.text-link {
  text-decoration: none;
  color: #333;
  font-size: 20px;
  transition: color 0.3s ease;
}

.text-link:hover {
  color: #007BFF;
}



.link-box {
  display: inline-flex;      /* Keeps image and text on same line */
  align-items: center;       /* Vertically centers the text with the image */
  gap: 12px;                 /* Space between image and text */
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.link-box:hover {
  color: #007BFF;
}

.link-image {
  width: 50px;               /* Adjust size as needed */
  height: auto;
  border-radius: 4px;
}

.link-text {
  font-size: 18px;
}