body {
  background-image: url('images/plaid.jpg');
  background-size: cover;  /* Ensures the image covers the entire area */
  background-position: center;  /* Centers the background image */
  background-repeat: no-repeat;  /* Prevents the image from repeating */
  background-attachment: fixed;  /* Keeps the background fixed while scrolling */
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

.tulips {
  margin-left: 600px;
  margin-top: 300px;
  transition: background-color 0.5s;
}

.tulips:hover {
  background-color: bisque;
}