/* rossstyles.css */

/* Set the background color for the entire page */
body {
  background-color: #b300b3; /* Magenta! Because why not? */
  font-family: 'Comic Sans MS'; /* For maximum quirkiness */
  font-size: 24px; /* Big and bold! */
  line-height: 1.5; /* Extra dramatic spacing */
  text-align: center; /* Because center stage is where it's at */
  padding: 150px; /* Padding for extra flair */
}

/* Style the text within the body */
body p {
  color: #00ff00; /* Neon green! */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Ooh, mysterious shadows! */
  animation: wiggle 2s infinite alternate; /* Wiggly text! */
}

/* Keyframes for the wiggle animation */
@keyframes wiggle {
  0% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(20deg);
  }
}
