        body {
            overflow-x: hidden;
            font-family: Arial, sans-serif;
            background-color: #fafafa;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        h1 {
            display:none;
            color: #333;
            margin-bottom: 20px;
        }
        .logo img{
            width: 100%;
            height: auto;
            background-color: #ccc;
            margin-bottom: 20px;
        }
        .video {
            width: 100%;
            background-color: #cccccc54;
            margin-bottom: 20px;
            text-align:center;
        }
        .video video::-webkit-media-controls-enclosure {
            overflow: hidden;
        }
        .video video::-webkit-media-controls-panel {
             width: calc(100% + 30px);
             
        }
        .wallet {
            margin-top: 20px;
            font-size: 18px;
        }
        .wallet img {
         width: 100%;
        }
        .slogan {
            font-size: 24px;
            font-weight: bold;
            color: #007BFF;
            margin: 20px 0;
        }
        input[type="text"] {
            padding: 10px;
            font-size: 16px;
            width: 300px;
        }
        button {
            padding: 10px 20px;
            font-size: 16px;
            background-color: #007BFF;
            color: white;
            border: none;
            cursor: pointer;
            margin-top: 10px;
            background: linear-gradient(to top, #5ab0c0, #52c1d3);
            border-radius: 5px;
        }
        button:hover {
            background-color: #0056b3;
        }
        .neuron-container {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index:-1;
        }
        .neuron {
          position: absolute;
          width: 3px;
          height: 3px;
          background-color: #35bbd2; 
          border-radius: 50%;
          opacity: 0;
          animation: blink 2.5s infinite;
        }
        @keyframes blink {
          0%, 100% {
          opacity: 0;
          }
          50% {
          opacity: 1;
          }
        }
        body::-webkit-scrollbar {
         width: 5px;              
        }
        body::-webkit-scrollbar-track {
         background: #fafafa;       
        }
        body::-webkit-scrollbar-thumb {
         background-color: #52c1d3;    
         border-radius: 20px;       
         border: 3px solid #52c1d3;  
        }
        .text {
         font-size: 20px;
         padding: 20px;
         max-width: 892px;
         color: #0f263a;
        }
        .text p.one {
         font-style: oblique;
        }
        @media (max-width:980px) {
        .logo img {
         position: relative;
         top: 118px;
         }
         .video {
         height: 377px;
         }
         .video video::-webkit-media-controls-panel {
         width: auto;
        }
        .video video {
         height:211px!important;
         position:relative;
         margin-top:126px;
        }
        }
        @media (min-width:980px) {
        .logo img {
         margin-top: -340px;
        }
        }   
        
        
        
        