

body {
    /* Set a tiger image as the background */
    background-image: url('Test.6A'); /* replace with your tiger image filename */
    background-size:auto;       /* makes it cover the whole page */
    background-position: center;  /* center the image */
    background-repeat: no-repeat; /* do not repeat the image */
  background: linear-gradient(to left, #000000, #434343);


    
    /* Optional: fallback color in case image doesn’t load */
    background-color: black;
    
    color: white;         /* text color on top of image */
    font-family: Arial;
    text-align: center;   /* center content */
}

img {
    width: 50%;  /* same width for all images */
    height: auto;  /* keep proportions */
    margin: 20px 0; /* space above and below each image */
    border-radius: 10px; /* optional styling */
}
