/* styles.css */
body {
  margin: 0;
  padding: 0;
  background-color: #121212;
  color: #ffffff;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
  background-image: radial-gradient(circle at top left, rgba(187,134,252,0.15), transparent 60%),
                    radial-gradient(circle at bottom right, rgba(187,134,252,0.15), transparent 60%);
  background-repeat: no-repeat;
  background-size: cover;
}
.logo {
  margin-top: 10vh;
}
.logo img {
  width: 70%;
  max-width:400px;
  height: auto;
  filter: hue-rotate(260deg) saturate(2) brightness(1);
}
.dynamic-text {
  margin-top: 2rem;
  font-size: 1.5rem;
}
.highlight {
  color: #bb86fc;
  font-weight: bold;
}
.link-highlight {
  color: #bb86fc;
  text-decoration: none;
}
.link-highlight:hover {
  text-decoration: underline;
  text-shadow: 0 0 5px #bb86fc;
}
footer {
  margin-top: auto;
  background: #2a2a2a;
  padding: 1rem;
  font-size: 0.9rem;
  color: #ffffff;
}
.social-icons {
  margin: 1rem;
  margin-top: 0rem;
}
.social-icons a {
  margin: 1rem;
  font-size: 1.6rem;
  color: #ffffff;
  transition: color 0.3s, text-shadow 0.3s;
  display: inline-block;
}
.social-icons a:hover {
  color: #bb86fc;
  text-shadow: 0 0 6px #bb86fc;
}
h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(187,134,252,0.4);
}
.social-icons svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  vertical-align: middle;
}


