
        body {
            background-color: rgb(57, 57, 57);
            height: 100%;
            width: 100%;
            margin: 0px;
            padding: 0px;
            overflow-x: hidden;
        }


        h1 {
            display: block;
            margin: 0px;
            font-weight: bold;
        }       

        h3 {
            display: block;
            margin: 0px;
            font-weight: bold;
        }

        .h3-main-top {
            padding-top: 5%;
            text-align: center;
            margin: auto;
            font-size: 40px;
            border: 0px solid black;
            width: 95%;
            height: 680px;
            display: block;
        }
        .h3-1 {
            position: relative;
            margin: auto;
            font-size: 40px;
            background-image: url(image/Grass.png);
            background-repeat: repeat-x;
            background-position-y: 511px;
            background-color: #f6f6f6;
            border: 1px solid black;
            width: 100%;
            height: 680px;
            display:inline;
            float:left;
            
            overflow: hidden;
        }

        .h3-1-cover {
            top: 0px;
            left: 0px;
            position: absolute;
            margin:0px;
            background-color: #0000009e;
            border: 0px solid black;
            width:100%;
            display:inline;
            float:left;
            height:100%;
            overflow: hidden;
            z-index: 100;
        }

        .directions {
            color: #ffffff;
            background-color: #000000;
            border: solid 2px white;
            border-radius: 4px;
            padding-top: 3px;
            padding-bottom: 3px;
            padding-left: 5px;
            padding-right: 5px;
            margin: 30px auto ;
            position: relative;
            font-size: 30px;
            z-index: 105;
            text-align: center;
            


        }
        .h3-1a {
            left: 5%;
            bottom: 5%;
            width: 100%;
        }

        .Score {
            position: relative;
            border-radius: 5px;
            width: 200px;
            height: 50px;
            border: 2px solid #ffffff;
            z-index: 102;
            background-color: #000000;
            color: white;
            font-size: 47px;
            text-align: center;
            font-family: Baskerville;   
            margin: auto;
            top: 20%;
        }

        .Character1 {
            position: absolute;
            top: 388px;
            left: 50px;
            border: 0px solid #000000;
            
            transition: all 1s ease-in-out;
	        -webkit-transition: all 1s ease-in-out; /** Chrome & Safari **/
	        -moz-transition: all 1s ease-in-out; /** Firefox **/
	        -o-transition: all 1s ease-in-out; /** Opera **/       
        }

        .Character-image {
            position: relative;
            width: 125px;
            height: 125px;
            
        }

        .Character-button {
            position: absolute;
            margin: 0px;
            padding: 0px;
            top: 560px;
            left: 20px;
            
           
        }

        .Start-img {
            position: absolute;
            margin: 0px;
            padding: 0px;
            top: -25px;
            left: -25px;
            border: 0px solid #000000;
            height:50px;
            width:50px;
            cursor: pointer;
        }

        .Start-img:hover {
            opacity: .7;


        }

        .Start-button {
            position: absolute;
            margin: 0px;
            padding: 0px;
            top: 50%;
            left: 50%;
            border: 0px solid #000000;
            z-index: 101;
            
        }

        .jump {
            
            color: white;
            border: 3px solid #000000;
            width: 80px;
            height: 30px;
            background-color: #1f0707; 
            border-radius: 8px;
            color: white;
            cursor: pointer;
            font-size: 14px;
            font-family: Verdana, Geneva, sans-serif;
            font-weight: 600;
            line-height: 14px;
            text-align: center;
            vertical-align: middle;
            margin: 0px;
            padding: 0px;
        }

        .move-left {
            animation: character-jump .75s ease-out, character-down .65s ease-in .65s;
	        -moz-animation: character-jump .75s ease-out, character-down .65s ease-in .65s;
            -o-animation: character-jump .75s ease-out, character-down .65s ease-in .65s;
            -webkit-animation: character-jump .75s ease-out, character-down .65s ease-in .65s;
            }

            @keyframes character-jump {

                0% {
                    top: 388px;
                    left: 50px;
                }
                100% {
                    top: 240px;
                    left: 50px;
                }
                
            }

            @-moz-keyframes character-jump {

                0% {
                    top: 388px;
                    left: 50px;
                }
                100% {
                    top: 240px;
                    left: 50px;
                }
                
            }

            @-webkit-keyframes character-jump {

                0% {
                    top: 388px;
                    left: 50px;
                }
                100% {
                    top: 240px;
                    left: 50px;
                }
                
            }

            @-o-keyframes character-jump {

                0% {
                    -o-top: 388px;
                    -o-left: 50px;
                }
                100% {
                    -o-top: 240px;
                    -o-left: 50px;
                }
                
            }

            @keyframes character-down {

                0% {
                    top: 240px;
                    left: 50px;
                }

                100% {
                    top: 388px;
                    left: 50px;
                }
                
            }

            @-moz-keyframes character-down {

                0% {
                    top: 240px;
                    left: 50px;
                }

                100% {
                    top: 388px;
                    left: 50px;
                }
                
            }

            @-webkit-keyframes character-down {

                0% {
                    top: 240px;
                    left: 50px;
                }

                100% {
                    top: 388px;
                    left: 50px;
                }
                
            }
        
            @-o-keyframes character-down {

                0% {
                    top: 240px;
                    left: 50px;
                }

                100% {
                    top: 388px;
                    left: 50px;
                }
                
            }

            
        .Spike1 {
            position: absolute;
	        animation: spike-move 2.4s linear infinite;
            -moz-animation: spike-move 2.4s linear infinite;
            -webkit-animation: spike-move 2.4s linear infinite;
            -o-animation: spike-move 2.4s linear infinite;
            width: 80px;
            height: 34px;
            top: 478px;
            border: 0px solid black;
            right: 0px;
            background: url("image/Spike.png") top left no-repeat;
            
        }

        .Spike-image {
            position: relative;
            width: 100%;
            height: auto;
        }

        @keyframes spike-move {

            0% {
                right: 0px;
            }
            100% {
                right: 100%;
            }
            
        }

        @-moz-keyframes spike-move {

            0% {
                right: 0px;
            }
            100% {
                right: 100%;
            }
        }

        @-webkit-keyframes spike-move {

            0% {
                right: 0px;
            }
            100% {
                right: 100%;
            }
        }

        @-o-keyframes spike-move{

            0% {
                right: 0px;
            }
            100% {
                right: 100%;
            }
        }

        #blob-left {
            border: 1px solid black;
        }

        #spike-left {
            border: 1px solid black;
        }

        .device-landscape {
            visibility: hidden;
            position: absolute;
            margin-left: -171px;
            margin-top: -170px;
            padding: 0px;
            top: 50%;
            left: 50%;
            border: 0px solid #000000;
            z-index: 101;
        }

        
    @media only screen and (max-width: 700px) and (min-width: 540px) {   
        .directions {
            color: #ffffff;
            background-color: #000000;
            border: solid 2px white;
            border-radius: 4px;
            padding-top: 3px;
            padding-bottom: 3px;
            padding-left: 5px;
            padding-right: 5px;
            margin: 30px auto ;
            position: relative;
            font-size: 23px;
            z-index: 105;
            text-align: center;
            }
        
        .Score {
            position: relative;
            border-radius: 5px;
            width: 200px;
            height: 43px;
            border: 2px solid #ffffff;
            z-index: 102;
            background-color: #000000;
            color: white;
            font-size: 40px;
            text-align: center;
            font-family: Baskerville;   
            margin: auto;
            top: 20%;
        }
         
    }

    @media only screen and (max-width: 540px) {
       
        .directions {
            visibility: hidden;
            }
        
        .Score {
           visibility: hidden;
        }

        .Start-button {
           visibility: hidden;
            
        }

        .device-landscape{
            visibility: visible;


        }

    }





