/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}



a:link {
  color: white;
}

a:visited {
  color: white;
}

a:hover {
  color: purple;
}

a:active {
  color: white;
}

body {
  color: #d6a3f0; 
  
}

.center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%; /* Optional: ensures the image isn't full-width */
}

.color-shift-text {
    font-size: 3em; /* Example styling */
    animation: color-change 4s infinite; /* 4s duration, loops infinitely */
}

@keyframes color-change {
    0% {
        color: #ee6055; /* Start color */
    }
    25% {
        color: #60d394; /* Color at 25% of animation */
    }
    50% {
        color: #aaf683; /* Color at 50% */
    }
    75% {
        color: #ffd97d; /* Color at 75% */
    }
    100% {
        color: #ff9b85; /* End color */
    }
}
