                         /* per start css styles  */
                         * {
                            margin: 0;
                            padding: 0;
                            box-sizing: border-box;
                        }

                        @font-face {
                            font-family: moon;
                            src: url(../Font/SpaceMono-Regular.ttf);
                        }

                        @font-face {
                            font-family: rocket;
                            src: url(../Font/ROCKET\ WILDNESS.ttf);
                        }

                        html,
                        body {
                            background-color: black;
                            font-family: moon;
                            width: 100%;
                            height: 100%;
                            margin: 0;
                            overflow-x: hidden;
                            position: absolute;
                            top: 0;
                            left: 0;
                            z-index: -5;
                        }

                        .mobile-container {
                            padding: 0 12px;
                        }

                        .mobile-container::after {
                            content: '';
                            display: block;
                            clear: both;
                        }

                        .show {
                            display: block;
                        }

                        /* header css codes start  */

                        header {
                            width: 100%;
                            padding-bottom: 140px;
                            position: relative;
                        }
                        .nav {
                            display: flex;
                            flex-direction: row;
                            justify-content: space-between;
                            padding-top: 30px;
                        }

                        .mobile-menu {
                            position: absolute;
                            z-index: 1;
                            left: 285px;
                            text-align: right;
                            top: 80px;
                        }

                        .list-menu {
                            display: none;
                        }

                        .list-menu ul {
                            padding-top: 14px;
                            list-style-type: none;
                            display: flex;
                            flex-direction: column;
                        }

                        .list-menu ul li {
                            padding: 12px 16px;
                        }

                        .list-menu ul li a {
                            font-size: 1.1rem;
                            text-transform: uppercase;
                            text-decoration: none;
                            color: #ffffff;
                            opacity: 0.8;
                            position: relative;
                            padding-bottom: 5px;
                            font-weight: 100;
                        }

                        .list-menu ul li a::before {
                            content: '';
                            position: absolute;
                            width: 100%;
                            height: 1px;
                            border-radius: 2px;
                            background-color: #D8D8D8;
                            bottom: 0;
                            left: 0;
                            transform-origin: right;
                            transform: scaleX(0);
                            transition: transform .3s ease-in-out;
                        }

                        .list-menu ul li a:hover::before {
                            transform-origin: left;
                            transform: scaleX(1);
                        }

                        .leftnav i {
                            cursor: pointer;
                            font-size: 2.5rem;
                        }

                        .rightnav i {
                            color: #d8d8d8d8;
                            font-size: 2rem;
                            margin-top: 6px;

                        }

                        .leftnav,
                        .rightnav i {
                            padding: 10px 18px 0;
                        }

                        .leftnav a {
                            text-decoration: none;
                            color: #d8d8d8d8;
                        }

                        .header-content {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                        }

                        .header-content h1 {
                            font-size: 3rem;
                            text-align: center;
                            font-family: rocket;
                            color: #d8d8d865;
                            padding-top: 360px;
                        }

                        .container h1 {
                            margin-top: 15px;
                            text-align: center;
                            font-size: 40px;
                            color:  #d8d8d8be;
                            font-family: rocket , Arial, Helvetica, sans-serif;
                        }
                        .container p {
                            margin: 20px 0;
                            text-align: center;
                            font-size: 20px;
                            font-family: 'Roboto Mono', monospace;
                            color:  #d8d8d862;
                            text-align: justify;
                        }
                        #btn-net{
                            font-family: moon , Arial, Helvetica, sans-serif;
                            font-size: 1.2rem;
                            background-color: #d8d8d862;
                            font-weight: 900;
                            margin:0 20px;
                            width: 90%;
                            text-align: left;
                            padding: 8px;
                            float: left;
                            text-transform: uppercase;
                            border: 1px solid transparent;
                            border-radius: 2px;
                            text-transform: 0.5s;
                        }
                        #btn-net:hover{
                            background-color: transparent;
                            border-color: #00d9ffbd ;
                            box-shadow: 0 0 10px 4px #00d9ffbd ;
                            color:#00d9ffbd ;
                        }
                        





                                                 /* Media Query For 428px < devices */

                                                 @media screen and (min-width:435px) {
                                                    body {
                                                        overflow: scroll;
                                                        overflow-x: hidden;
                                                    }
                                                    .container {
                                                        width: 820px;
                                                        margin: 0 auto;
                                                    }
                                                    .rightnav i {
                                                        display: none;
                                                    }
                                                    .leftnav i {
                                                        padding: 0;
                                                    }
                                                    .list-menu {
                                                        display: block;
                                                    }
                                                    .list-menu ul {
                                                        flex-direction: row;
                                                    }
                                                    .vedio-container video {
                                                        width: 100%;
                                                        transform: scale(1);
                                                        padding-top: 40px;
                                                    }
                                                    .header-content h1 {
                                                        display: block;
                                                        font-size: 5rem;
                                                        padding-top: 350px;
                                                        color: #d8d8d860;
                                                    }
                                                    .mobile-menu {
                                                        display: none;
                                                    }
                                                }
                       