body {
            
    background-image: url('./animation/mario_background.jpg');
    background-size: 100%;
}

* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

h1 {
    color: rgb(162, 162, 216);
    text-shadow: 1px 3px 3px rgb(9, 10, 9);
    text-align: center;
    margin-top: -100px;
    margin-bottom: 130px;
}

#mario {
    position: relative;
    width: 260px;
    height: 260px;
    top: 70px;

}

.animate {
    animation: jump 400ms linear;
}

#block1 {
    width: 70px;
    height: 70px;
    position: relative;
    margin-top: 400px;
    left: 1600px;
    animation-name: block1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1.4s;
    padding: 0;
    
}

#mario:hover {
    animation-play-state: paused;
}

@keyframes block1 {

    0% {
        left: 1500px;
    }

    100% {
        left: -300px;
    }
}

@keyframes jump {

    0% {
        top: 70px
    }

    30% {
        top: -40px
    }

    60% {
        top: -40px
    }
    70% {
        top: -30px;
    }

    100% {
        top: 70px
    }

}

@keyframes coin {

    100% {
        transform: rotateY(360deg);
    }
}

#coin {
    position: fixed;
    top: 50px;
    right: 100px;
    width: 60px;
    height: 60px;
    animation-name: coin;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#coin2 {
    position: fixed;
    top: 250px;
    right: 700px;
    width: 60px;
    height: 60px;
    animation-name: coin;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#coin3 {
    position: fixed;
    top: 150px;
    left: 200px;
    width: 60px;
    height: 60px;
    animation-name: coin;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.button2 {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 8px 28px;
    border: 1px solid #00253d;
    border-radius: 8px;
    background: #0067aa;
    background: -webkit-gradient(linear, left top, left bottom, from(#0067aa), to(#00253d));
    background: -moz-linear-gradient(top, #0067aa, #00253d);
    background: linear-gradient(to bottom, #0067aa, #00253d);
    -webkit-box-shadow: #007ccc 0px 0px 40px 0px;
    -moz-box-shadow: #007ccc 0px 0px 40px 0px;
    box-shadow: #007ccc 0px 0px 40px 0px;
    text-shadow: #001522 1px 1px 1px;
    font: normal normal bold 17px arial;
    color: #ffffff;
    text-decoration: none;
}

.button2:hover,
.button2:focus {
    border: 1px solid #002944;
    background: #007ccc;
    background: -webkit-gradient(linear, left top, left bottom, from(#007ccc), to(#002c49));
    background: -moz-linear-gradient(top, #007ccc, #002c49);
    background: linear-gradient(to bottom, #007ccc, #002c49);
    color: #ffffff;
    text-decoration: none;
}

.button2:active {
    background: #00253d;
    background: -webkit-gradient(linear, left top, left bottom, from(#00253d), to(#00253d));
    background: -moz-linear-gradient(top, #00253d, #00253d);
    background: linear-gradient(to bottom, #00253d, #00253d);
}

.playButton {
    border: rgba(14, 96, 172, 0.822) 2px solid;
    border-radius: 10px;
    text-align: center;
    background: linear-gradient(to bottom, #18d806 5%, #127709 100%);
    color: blanchedalmond;
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 10px 25px 15px 25px;
    position: relative;
    margin: auto;
    margin-top: 200px;
    left: 44%;
    font-weight: bold;
}

.playButton:hover,
.playButton:focus {
    border: 1px solid #207432;
    background: linear-gradient(to bottom,#127709 5%, #18d806 100%);
    color: #ffffff;
    background-color: #0a8a15;
}

.playButton:active {
    position: relative;
    top: 1px;
}
#main{
    width: 100%;
    height: 100%;

}

#GameContainer {
    width: 100%;
    height: 100%;

}

#myScore {
    color: rgb(255, 255, 255);
    font-size: 30px;
    text-align: right;
    position: relative;
    left: 1200px;
}


#myLevel {
    color: rgb(255, 255, 255);
    font-size: 30px;
    text-align: right;
    position: relative;
    left: 900px;
}
.mute{
    background-image: url("./animation/img_181289.png");
    background-repeat: no-repeat;
    background-size: 30px;
    width: 100px;
    height: 100px;
    position: relative;
    left: 1450px;
}
.mute:hover{
    cursor:grab;
}
