body {
      font-family: Arial, sans-serif;
      background-image: url('https://bing.shangzhenyang.com/api/1080p');
      background-repeat: no-repeat;
  			 background-size: cover;
  			 background-attachment: fixed;
  			 background-position-x: center; 
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
    }

    .container {
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            -moz-backdrop-filter: blur(10px);
            -o-backdrop-filter: blur(10px);
      transition: transform 0.3s ease;
      background-color: rgba(255, 255, 255, 0.75);
      max-width: 600px;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }

    .container:hover {
      transform: scale(1.05);
    }

    h2 {
      font-size: 36px;
      margin-bottom: 20px;
      color: #333;
    }

    p {
      font-size: 18px;
      margin-bottom: 30px;
      color: #777;
    }

    a {
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
    }

    a:hover {
      text-decoration: underline;
    }
