body {
  background: url(https://yuyology.neocities.org/pngs/clouds.webp);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  width: 900px;
  display: block;
  font-family: "MS PGothic", sans-serif;
  font-size: 14px;
}

.message-container {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  border-radius: 10px;
  transition: box-shadow 0.3s ease; /* Transition for hover effect */
}

.message-text {
  color: #333;
  font-size: 1.2em;
  line-height: 1.5;
}

.link-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ddd;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  border-radius: 5px;
  margin-right: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease; /* Transition for hover effect */
}

.link-button:hover {
  background-color: #ccc; /* Slightly darker background on hover */
  transform: scale(1.05); /* Slightly scale up on hover */
}

.message-container:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow on hover */
}

.goober {
  position: fixed;
  bottom: 5px;
  left: 5px;
}

img:hover {
    filter: hue-rotate(0deg);
  animation: rainbow 3s infinite linear;
  transition: filter 0.5s ease;
}






