<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        

        body {
            font-family: Arial, sans-serif;
            color: white;
            background: linear-gradient(to bottom, #000, #333);
            overflow: hidden;
        }

        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            text-align: center;
        }

        header {
            width: 100%;
            position: absolute;
            top: 0;
            padding: 10px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header nav {
            display: flex;
            margin-right: 100px;
            gap: 20px;
        }

        header nav a {
            text-decoration: none;
            color: #aaa;
            font-size: 18px;
        }

        header nav a:hover {
            color: #fff;
        }

        .info {
            text-align: left;
            margin-top: 100px;
        }

        .info h1 {
            font-size: 3rem;
            font-weight: bold;
        }

        .info h2 {
            font-size: 1.2rem;
            color: #aaa;
        }

        
       
        .btn41-43 {
            padding: 10px 25px;
            margin-right: 30px;
            font-family: "Roboto", sans-serif;
            font-weight: 500;
            background: transparent;
            outline: none !important;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
          }
          
          .btn-42 {
            border: 2px solid rgb(255, 255, 255);
            z-index: 1;
            color: white;
          }
          
          .btn-42:after {
            position: absolute;
            content: "";
            width: 100%;
            height: 0;
            bottom: 0;
            left: 0;
            z-index: -1;
            background: rgb(255, 255, 255);
            transition: all 0.3s ease;
          }
          
          .btn-42:hover {
            color: rgb(0, 0, 0);
          }
          
          .btn-42:hover:after {
            top: 0;
            height: 100%;
          }
          
          .btn-42:active {
            top: 2px;
          }
          .btn41-43 {
            padding: 10px 25px;
            font-family: "Roboto", sans-serif;
            font-weight: 500;
            background: transparent;
            outline: none !important;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
          }
          
          .btn-41 {
            border: 2px solid rgb(255, 255, 255);
            z-index: 1;
            color: white;
          }
          
          .btn-41:after {
            position: absolute;
            content: "";
            width: 0;
            height: 100%;
            top: 0;
            left: 0;
            direction: rtl;
            z-index: -1;
            background: rgb(255, 255, 255);
            transition: all 0.3s ease;
          }
           .animated-text {
            font-size: 2em;
            color: #fff;
            font-weight: bold;
            position: absolute;
            opacity: 0;
        }

        /* First text coming from bottom */
        .text-bottom {
            bottom: -50px;
            animation: slideUp 1.5s ease-out forwards;
            margin-left: 130px;
        }

        /* Second text coming from top, starts after the first one */
        .text-top {
            top: -50px;
            animation: slideDown 1.5s ease-out forwards;
            animation-delay: 1.5s; /* Starts after first animation */
            margin-left: 90px;
        }

        @keyframes slideUp {
            from {
                bottom: -20px;
                opacity: 0;
            }
            to {
                bottom: 50%;
                opacity: 1;
            }
        }

        @keyframes slideDown {
            from {
                top: -40px;
                opacity: 0;
            }
            to {
                top: 50%;
                opacity: 1;
            }
        }
          .btn-41:hover {
            color: rgb(0, 0, 0);
          }
          
          .btn-41:hover:after {
            left: auto;
            right: 0;
            width: 100%;
          }
          
          .btn-41:active {
            top: 2px;
          }
        footer {
            position: absolute;
            bottom: 10px;
            text-align: center;
            width: 100%;
            color: gray;
        }

        .background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.5;
            background-image: url(pxfuel.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat; 
            background-attachment: fixed;
        }

        .info-content {
            margin-left: 100px;
        }
        .bn30 {
          border: 5em;
          cursor: pointer;
          outline: none;
          font-size: 16px;
          -webkit-transform: translate(0);
          transform: translate(0);
          background-image: linear-gradient(45deg, #4568dc, #b06ab3);
          padding: 0.7em 2em;
          border-radius: 65px;
          box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.438);
          -webkit-transition: box-shadow 0.25s;
          transition: box-shadow 0.25s;
          color: white;
          
          margin: 20px;

        }
        
        .bn30 .text {
          background-clip: text;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-image: linear-gradient(45deg, #4568dc, #b06ab3);
        }
        
        .bn30:after {
          content: "";
          border-radius: 18px;
          position: absolute;
          margin: 4px;
          top: 0;
          left: 0;
          bottom: 0;
          right: 0;
          z-index: -1;
          background: #0e0e10;
        }
        
        .bn30:hover {
          background-image: linear-gradient(-45deg, #4568dc, #b06ab3);
          box-shadow: 0 12px 24px rgba(128, 128, 128, 0.1);
        }
        
        .bn30:hover .text {
          background-image: linear-gradient(-45deg, #4568dc, #b06ab3);
        }
      
        

    </style>