/* Reset some default styles */
body, h1, p {
    margin: 0;
    padding: 0;
  }
  
  body {
    background-image: url("background.jpg"); /* Replace with your image path */
    background-position: center center;
    background-size: cover;
    font-family: Arial, sans-serif;
  }
  
  .container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* White background with opacity */
  }
  
  h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
  }
  
  img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 12px; /* Smaller font size */
    color: #666;
  }
  