

.site-copyright {
  color: #ffffff;
  padding: 10px;
  font-size: 15px;
  padding-top: 20px;
  text-align: center;
}

.site-copyright-link {
  color: #ffffff;
  text-decoration-color: fff; /* This controls underline color */
  padding-top: 15px;
  padding-bottom: 0px;
}

.site-copyright-link:hover {
  color: #f1f1f17e;
  text-decoration-color: #ffffff;
}

/** Change tag to something more appropriate to specific page **/
/* Take it out if webpage will not be using social icons */
.site-social-icons {
  padding-top: 0px;
  margin-top: 20px;
  text-align: center;
}

.site-social-icons a {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0 0.75rem;
  transition: color 0.3s;
}

.site-social-icons a:hover {
  color: #f1f1f17e;
}

.created-by {
  color: #b9dfaf;
  display: flex;
  align-items:center;
  justify-content: flex-end;
  font-size: 60%;
  font-weight: normal;
  padding: 10px;
  flex-wrap: wrap;                /* Allows wrapping on smaller screens */
  gap: 10px;                      /* Adds a little space between image and text */
  text-align: right;
}

.created-by img {
  max-width: 40px;
  height: auto;
  border-radius: 5%;
  /* display: block; */
  transition: transform 0.4s ease, filter 0.4s ease;
}

.created-by img:hover {
  transform: rotate(15deg) scale(1.2);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.created-by h2 {
  font-weight: lighter;
  margin: 0;                      /* Removes default top/bottom spacing */
  display: flex;
  align-items: center;            /* Ensures text stays centered vertically */
}

.created-by-link {
  color: #b9dfaf;;
  text-decoration-color: #b9dfaf; /* This controls underline color */
  padding-left: 5px;
}

.created-by-link:hover {
  color: #f1f1f17e;
  text-decoration-color: #ffffff;
}

