body, html {
      height: 100%;
      margin: 0;
    }

    .background {
      background-image: url("img.jpg"); /* 👉 image path here */
      background-size: cover;
      background-position: center;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .box {
      background-color: rgba(255, 255, 255, 0.8);
      height:200px ;/* semi-transparent white */
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(0,0,0,0.3);
      text-align: center;
      width: 500px;
    }
     @keyframes typing {
      from { width: 0; }
      to   { width: 40ch; } /* 'ch' = character width unit */
    }

     .typing {
      width: 0;
      overflow: hidden;
      white-space: nowrap;
      border-right: 2px solid black;
      font-size: 24px;
      animation: typing 3s steps(30) forwards;
     }
     .c{
      border-radius:10px;
      width: 100%;
      height:60px;
      font-size:40px;
      cursor:pointer;
      text-decoration: none;
      color: rgb(81, 62, 62);
      font-size: 30px;
      border: 2px solid black;
      border-radius: 10px;
      padding: 10px;
    }
    .c:hover{
      background-color:green;
    }
       .background1 {
      background-image: url("img2.jpg");
      background-size: cover;
      background-position: center;
      height: 100vh;
      display: flex;
      justify-content: center;
    
      align-items: center;
       }
    .box1{
      background-color: rgba(255, 255, 255, 0.8);
      height:400px ;  
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(0,0,0,0.3);
      margin-right:60%;
      text-align: center;
      width: 500px;

    }