/* 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-image: url("https://goblinings.neocities.org/photos/twinkle.gif");
  background-repeat: repeat;
  color: black;
  font-family: Alagard;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}


.content-box {
    width: 80%;
    max-width: 600px;
    padding: 20px;
    background-color: #73A942;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 128, 0, 0.6);
    text-align: center;
    opacity: 0.75
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

footer img {
    max-width: 100px; /* Adjust size as needed */
    height: auto;
}

  .glow-link {
    text-decoration: none; /* Removes underline */
    color: black; /* Default text color */
    transition: text-shadow 0.3s ease, color 0.3s ease; /* Smooth transition */
}

.glow-link:hover {
    color: #9ef01a; /* Change text color on hover */
    text-shadow: 0 0 10px #9ef01a, 0 0 20px #9ef01a; /* Glowing effect */
}
