body {
    background-color: rgb(206, 132, 193); /* bright pinky-purple */
    font-family: 'Comic Sans MS', cursive;
    color: yellow;
    text-align: center;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png'); /* optional sparkle pattern */
  }
  
  h1 {
    color: rgb(250, 218, 36);
    font-size: 48px;
    text-shadow: 2px 2px 4px black;
    border: 3px double yellow;
    padding: 10px;
    background-color: navy;
    margin-bottom: 20px;
  }
  
  ul {
    background-color: rgb(185, 9, 9);
    padding: 15px;
    border: 3px dashed yellow;
    border-radius: 15px;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 5px 5px 10px black;
    color: white;
    font-size: 18px;
    list-style-type: square;
  }
  
  a {
    color: cyan;
    font-weight: bold;
    text-decoration: blink;
  }
  
  .banner {
    background-color: gold;
    color: darkblue;
    font-family: 'Impact', sans-serif;
    text-align: center;
    padding: 15px;
    font-size: 20px;
    border-top: 4px groove red;
    border-bottom: 4px groove red;
    margin-top: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .photo-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px auto;
    padding: 10px;
    border: 4px dotted hotpink;
    background-color: lavender;
    width: fit-content;
  }
  
  .photo-gallery img {
    width: 300px;
    height: 200px;
    border: 5px groove purple;
    box-shadow: 4px 4px 10px black;
    transition: transform 0.3s ease;
  }
  
  .photo-gallery img:hover {
    transform: scale(1.05);
    border-color: gold;
  }
  