button{
   padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background-color: LightPink;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
      font-family:  "Lucida Console", "Courier New", monospace;
  }
  button:Hover {
    background-color: HotPink;
   	transition: all 0.3s ease-in-out;
    		transform: scale(1.1);
  }
  h1 {
   font-family:  "Lucida Console", "Courier New", monospace;
  }
  body {
    margin: auto;
    width:50%;
    border: 3px solid black;
    padding: 10px;
   height: 500px;
   background-color: lavenderBlush;
    border-radius: 15px;
   text-align:center;
 }
  img {
max-width: 100%;  /* Makes sure the image resizes responsively */
    width: 200px;     /* Set a fixed width */
    height: auto;     /* Maintain aspect ratio */
    display: block;   /* Prevents extra spacing */
    margin: 10px auto; /* Centers the image */
}