
        * {
            font-family: 'Monaco', monospace;
            color: rgb(175, 175, 175);
        }
        
        body {
            width: 100%;
            height: 100%;
            background: rgb(0, 0, 0);
            font-weight: 20px;
            margin:0;
        }
        
        #command-box {
            position: fixed;
            bottom: 0px;
            left: 0px;
            width: 100%;
        }
        
        #cmd {
            width: 100%;
            height: 50px;
            resize: none;
            background: rgb(0, 0, 0);
            border: none;
            box-shadow: -2px -2px white;
            color: white;
        }
        
        #com {
            width: 90%;
            height: 25px;
            resize: none;
            background: rgb(0, 0, 0);
            border: none;
            outline: none;
            font-size: 17px !important;
            color: white;
        }
        
        #log {
            position: fixed;
            bottom: 50px;
            left: 0px;
            margin-left: 20px;
            margin-right: 240px;
            padding-bottom: 10px;
            height: auto;
            border: none white 1px;
            font-size: 15px !important;
        }
        
        #canvas-map {
            width: 200px;
            height: 200px;
            position: fixed;
            bottom: 70px;
            right: 20px;
            border: solid rgb(0,200,255) 1px;
        }
        
        #stats {
            position: fixed;
            width: 200px;
            height: auto;
            top: 20px;
            right: 20px;
            background: black;
            border: solid rgb(0,200,255) 1px;
            font-family: 'Orbitron', 'Monaco', monospace;
        }
        
        #stats>h2 {
            text-align: center;
            font-size: 20px;
            font-family: 'Orbitron', 'Monaco', monospace;
        }
        
        #mainStats {
            border-top: solid rgb(0,200,255) 1px;
            border-bottom: solid rgb(0,200,255) 1px;
            padding: 5px;
            font-family: 'Orbitron', 'Monaco', monospace;
            color:rgb(0,175,225);
            text-shadow: 0 0 2px rgb(0,200,255);
        }
        
        .-sec {
            border: dashed rgb(200, 200, 200) 2px;
            padding-left: 20px;
            padding-right: 20px;
            padding-top: 10px;
            padding-bottom: 10px;
        }
        
        .-sec > div {
            text-align: center;
            font-size: 20px;
        }
        
        td,
        th {
            border: solid white 1px;
            margin: 0;
            text-align: center;
            padding-top: 5px;
            padding-bottom: 5px;
            padding-left: 30px;
            padding-right: 30px;
            color: rgb(200, 150, 0);
        }
        
        tr {
            border: solid white 1px;
            margin: 0;
            text-align: center;
            width: 30%;
        }
        
        table {
            width: 100%;
            overflow-y: auto;
            border-collapse: collapse;
        }
        
         ::-webkit-scrollbar {
            width: 10px;
            display: visible;
        }
        
         ::-webkit-scrollbar-track {
            background: rgb(50, 50, 50);
        }
        
         ::-webkit-scrollbar-thumb {
            background: white;
        }
        
         ::-webkit-scrollbar-thumb:hover {
            background: rgb(200, 200, 200);
        }
        
        @media(max-width: 600px) {
            * {
                font-size: 13px !important;
            }
            #stats,
            #canvas-map {
                display: none;
            }
            #log {
                margin-right: 20px;
                font-size: 13px !important;
            }
            #com {
                font-size: 15px !important;
            }
        }