 p.in {
            width: inherit;
            padding: 4px 4px;
            display: inline-block;
            transition: all 0.3s ease;
            border-left: 1px solid #000;
            text-shadow: 1px 1px #000;
            text-align: left;
        }

        p.out {
            width: inherit;
            padding: 4px 4px;
            border-right: 1px solid #000;
            text-shadow: 1px 1px #000;

            text-align: right;

        }

        #inputPounds {
            font-size: 24px;
            border: 2px solid #000;
        }

        #demo {
            width: inherit;
            padding: 4px 4px;
            display: inline-block;
            border-radius: 5px;
            transition: all 0.3s ease;
            background: #000;
            color: #fff;
            text-shadow: 1px 1px #000;
            text-align: left;
        }

        #convert {
            width: inherit;
            padding: 4px 4px;

            border-radius: 5px;
            transition: all 0.3s ease;

            text-shadow: 1px 1px #000;
            text-align: right;
        }



        details {
            outline: none;
            text-align: right;
        }

        img {
            background: transparent url('/loader.gif') center no-repeat;
            cursor: pointer;
            -webkit-transition: all 200ms ease-in;
            -webkit-transform: scale(1);
            -ms-transition: all 200ms ease-in;
            -ms-transform: scale(1);
            -moz-transition: all 200ms ease-in;
            -moz-transform: scale(1);
            transition: all 200ms ease-in;
            transform: scale(1);

        }

        * {
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        }

        input:focus::-webkit-input-placeholder {
            opacity: 0;
        }

        ::-webkit-input-placeholder {
            /* Chrome/Opera/Safari */
            color: #000;
        }

        ::-moz-placeholder {
            /* Firefox 19+ */
            color: pink;
        }

        :-ms-input-placeholder {
            /* IE 10+ */
            color: pink;
        }

        :-moz-placeholder {
            /* Firefox 18- */
            color: pink;
        }

        html {
           max-width:98vw;
            overflow-x: hidden;
            font-family: "Lucida Bright", Georgia, serif;
            margin: 0;
        }

        body {
            font-family: "Lucida Bright", Georgia, serif;
            font-style: normal;
            font-variant: normal;

        }

        .sidenav {
            height: 95%;
            width: 0;
            position: fixed;
            z-index: 1;
            top: 0;
            left: 0;
            background-color: #000;
           
            overflow-x: hidden;
            transition: 0.5s;
            padding-top: 60px;

        }

        .sidenav a {
            padding: 8px 8px 8px 32px;
            text-decoration: none;
            font-size: 25px;
            color: #818181;
            display: block;
            transition: 0.3s;

        }

        .sidenav a:hover {
            color: #f1f1f1;
        }

        .sidenav .closebtn {
            position: absolute;
            top: 0;
            left: 1px;
            font-size: 36px;
            margin-left: 1px;
        }

        @media screen and (max-height: 450px) {
            .sidenav {
                padding-top: 15px;
            }

            .sidenav a {
                font-size: 18px;
            }
        }

        ::-moz-selection {
            /* Code for Firefox */
            color: #fff;
            background: #000;
        }

        ::selection {
            color: #fff;
            background: #000;
        }

        li {

            FONT-SIZE: 2.5EM;
            margin-bottom: 5px;
            list-style: none;
            
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        }

        li:before {


            background: #000;

            color: white;

            text-align: center;
            display: inline-block;
        }


        a {
            margin-left: 5px;
            text-decoration: none;
            text-shadow: 1px 1px 1px #fff;
        }

        a:hover {
            text-decoration: underline;
        }

        html {
            overflow-y: hidden;
            overflow: scroll;
        }

        ::-webkit-scrollbar {
            width: 10px;
            /* remove scrollbar space */
            background: transparent;
            /* optional: just make scrollbar invisible */
        }

        /* optional: show position indicator in red */
        ::-webkit-scrollbar-thumb {
            background: #000;
        }

        * {

            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        }

        #myInput {
            background-image: url('/search.png');
            background-position: 7px 7px;
            background-size: 25px 25px;
            background-repeat: no-repeat;
            width: 100%;
            font-size: 16px;
            padding: 12px 20px 12px 40px;
            border: 1px solid #ddd;
            background: #000;
            color: #fff;
            margin-bottom: 12px;
            -webkit-animation: flipinx 1s linear 1s 1 normal;
            animation: flipinx 1s linear 1s 1 normal;
        }

        @-webkit-keyframes flipinx {
            0% {
                opacity: 0;
                -webkit-transform: perspective(400px) rotateX(0deg);
                transform: perspective(400px) rotateX(90deg);
            }

            40% {
                -webkit-transform: perspective(400px) rotateX(0deg);
                transform: perspective(400px) rotateX(-10deg);
            }

            70% {
                -webkit-transform: perspective(400px) rotateX(0deg);
                transform: perspective(400px) rotateX(10deg);
            }

            100% {
                opacity: 1;
                -webkit-transform: perspective(400px) rotateX(0deg);
                transform: perspective(400px) rotateX(0deg);
            }
        }

        @keyframes flipinx {
            0% {
                opacity: 0;
                transform: perspective(400px) rotateX(90deg);
            }

            40% {
                transform: perspective(400px) rotateX(-10deg);
            }

            70% {
                transform: perspective(400px) rotateX(10deg);
            }

            100% {
                opacity: 1;
                transform: perspective(400px) rotateX(0deg);
            }
        }

        #myUL {
            list-style-type: none;
            padding: 0;
            margin: 0;
            background-color: #000;
            
        }

        #myUL li a {
            border: 1px solid gold;
            margin-top: -1px;
            /* Prevent double borders */
           text-shadow:1px 1px 1px 1px #fff;
            padding: 12px;
 
            color: #fff;
            display: block
        }

        #myUL li a:hover:not(.header) {
            background-color: #eee;
            color:#000;
        }

        body {
            font-family: "Lucida Bright", Georgia, serif;
            -webkit-transition: background-color 1s ease-in;
            -moz-transition: background-color 1s ease-in;
            -o-transition: background-color 1s ease-in;
            transition: background-color 1s ease-in;
        }

        .terminal {
            padding: 10px;

            font-family: "Lucida Bright", Georgia, serif;
            text-shadow: 2px 2px #fff;


        }

        #in_txt {
            width: 95%;
            outline: none;
            background: #fff;
            color: #000;


        }

        #input_div {
            bottom: 0;
            width: 100%;
            background: transparent;
        }

        input {
        border:none;
            text-shadow: 1px 1px 1px #000;
           
        }

        span {
            text-shadow: 1px 1px 1px #000;
        }

        #in_txt,
        button,
        .terminal {
            font-family: "Lucida Bright", Georgia, serif;
            font-size: 24px;



        }

        button {
            font-size: 100%;
        }

        button {
            right: 0;
            position: fixed;
            width: 40px;
            height: 30px;
            display: inline;
            outline: none;
            background: #000;
            color: #fff;
        }

        body {
            background: #fff;
            color: #000;
        }

    }