body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #5BCEFA, #F5A9B8, #FFFFFF);
  background-size: 600% 600%;
  animation: gradientAnimation 12s ease infinite;
  z-index: -1; /* Ensure the background stays behind the content */
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 1rem;
  box-sizing: border-box;
}
.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 100%;
  text-align: center;
}
.title {
  margin-bottom: 0.5em;
  font-size: 1.6em;
  font-style: italic;
  font-weight: 85;
}
.card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.card ul li {
  margin: 1.8rem 0;
}
.card a {
  font-size: 1.2em;
  font-weight: 600;
  color: #383030;
  text-decoration: none;
  transition: color 0.3s;
}
.card a:hover {
  color: #ff9a9e;
}
.link-description {
  font-size: 0.9em;
  font-style: italic;
  color: #666;
  margin-top: 0.25rem;
}
.card footer {
  margin-top: 2rem;
}
.header-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 2rem auto;
  width: 75%;
}
.footer-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1rem auto;
  width: 70%;
}
.footer-text {
  font-size: 0.8em;
  font-style: italic;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
img.emoji {
  height: 1.5em !important;
  width: 1.5em !important;
  vertical-align: -0.4em !important;
}
.footer-link {
  background: linear-gradient(to right, #D62E00, #FF9A56, #D362A4, #A30262) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-decoration: none !important;
  font-style: inherit !important;
  font-size: inherit !important;
  font-weight: normal !important;
}

.footer-link:hover {
  background: linear-gradient(to right, #D62E00, #FF9A56, #D362A4, #A30262) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-decoration: none !important;
}


