html {
    min-height: 100%;

    background-repeat: no-repeat;
     overflow: -moz-scrollbars-none; 
     -ms-overflow-style: none; 
max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

   ::-webkit-scrollbar { width: 0;
   height:0 !important }

#titleSpace{
    width: 100vw;
}
body{
max-width: 100%;
    overflow-x: hidden;
min-height: 100%;
    background: url("../assets/background_art.png");
     background-repeat: no-repeat;
     background-size: cover ;
     width: 120vw;
     overflow-y: hidden;
}

h1 {
    color: white;
    font-family: 'Press Start 2P', cursive;
    font-size: 3vw;
    margin-left: 25vw;
    width: 50vw;
    text-align: center;
    margin-top: 5vh;
    display: inline-block;
    vertical-align: middle;
}

#audioButton {
    color: white;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5vw;

    width: 12vw;
    text-align: center;
    align-content: left;
    cursor:pointer;
    background-color: red;
    padding-top: 1vh;
    padding-bottom: 1vh;
    display: inline-block;
    vertical-align: middle;
    margin-top: -5vh;
    margin-left: -1vw;
}

#audioButton2 {
    color: white;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5vw;
    width: 6vw;
    text-align: center;
    align-content: center;
    cursor:pointer;
    background-color: green;
    padding-top: 1vh;
    padding-bottom: 1vh;
    display: inline-block;
    vertical-align: middle;
    margin-top: -5vh;
    margin-left: 3vw;
}



.how_to_play_area {
    width: 90vw;
    left: 5vw;
    position: absolute;
    top: 15vh;
    color: white;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5vw;
    line-height: 4vh;
 
    text-align: center;
}

.mole_example {
    width: 90vw;

    height: 25vh;
    background-image: url("../assets/example.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

 
    text-align: center;
}

.input_example {
    width: auto;

    height: 10vh;
    background-image: url("../assets/input_example.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

 
    text-align: center;
}

#container {
    width: 100vw;
    height: 40vh;
    display:flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 10vh;

 
    text-align: center;
}

#container_after_score {
    width: 40vw;
    margin-left: 30vw;
    text-align: center;
    margin-top: 5vh;

}

#container_after_buttons {
    width: 20vw;
    margin-left: 40vw;
    align-content: center;
    margin-top: 5vh;

}


.pre_container{
    width: 100vw;
    text-align: center;
}

#container_inp {
    height: 20vh;
    width: 100vw;

}

input {
    height: 8vh;
    width: 40vw;
    margin-left: 30vw;
    margin-top: 5vh;
    align-content: center;
    color: black;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5vw;
    padding-left: 2vw;
}

::placeholder{
    color: #c9c7b1;
}

h2{
    color: black;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5vw;
    line-height: 11vh;
}

h3{
    color: white;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5vw;
    position: absolute;
    top: 60vh;
}
.scoreboard{
     display: inline-block;
    vertical-align: middle;
    width: 35vw;
    height: 10vh;
    background: url("../assets/scoreboard.png") no-repeat;
    background-size: contain;
    background-position: center;
}

.timer{
     display: inline-block;
    vertical-align: middle;
    width: 35vw;
    height: 10vh;
    background: url("../assets/scoreboard.png") no-repeat;
    background-size: contain;
    background-position: center;
}

.hole {
    flex: 1 0 30%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    width:  30%;
    height: 100%;
    margin-bottom: 3vh;
}

.hole:after{
    display:block;
    background: url("../assets/dirt.png") bottom center no-repeat;
    background-size:contain;
    content: '';
    width: 100%;
    height: 120%;
    position: absolute;
    z-index: 2;
    bottom: -12vh;
    margin-bottom: 3vh;
}

.mole {
    background: url("../assets/mole_coin.png") bottom center no-repeat;
    background-size: contain;
    position: absolute;
    top: 100%;
    width: 100%;
    height: 105%;

    transition: background-image 10s ease;
    transition: top 0.5s;
    margin: 0 auto;
}

.word {

    width: auto;
    padding-left: 2vw;
    padding-right: 2vw;
    height: 10%;
    color: black;

    padding-top: 1vh;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5vw;
    position: relative;
   
    margin: 0 auto;
    flex-wrap: nowrap;
    text-align: center;

}

.hole.up .mole{
    top:0;
}

.word.up {
    display:none;
}

#start_button{
    height: 15vh;
    width: 20vw;
   color: black;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5vw;

    position: absolute;
    left:  40vw;
    top:  35vh;
    background: url("../assets/button.png") no-repeat;
    background-size: contain;
    background-position: center;
    cursor:pointer;
}

#start_button:hover {

    background: url("../assets/button_hover.png") no-repeat;
    background-size: contain;
    background-position: center;
}

#how_toButton{
    height: 10vh;
    width: 15vw;
    color: black;
    font-family: 'Press Start 2P', cursive;
    font-size: 1vw;
    position: absolute;
    left:  42.5vw;
    top:  48vh;
    background: url("../assets/button.png") no-repeat;
    background-size: contain;
    background-position: center;
    cursor:pointer;
}

#how_toButton:hover{
    background: url("../assets/button_hover.png") no-repeat;
    background-size: contain;
    background-position: center;
}

.div_head{
    position: absolute;
    left:  40vw;
    top:  45vh;
}

.reset_button{
    height: 10vw;
      width: 100%;
  display: block;
    color: black;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5vw;
    margin-top: 5vh;
    background: url("../assets/button.png") no-repeat;
    background-size: contain;
    background-position: center;
    cursor:pointer;
}

.reset_button:hover{
   background: url("../assets/button_hover.png") no-repeat;
    background-size: contain;
    background-position: center;
}

.back_button{
    height: 5vw;
      width: 100%;
  display: block;
    color: black;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5vw;
    margin-top: 5vh;
    background: url("../assets/button.png") no-repeat;
    background-size: contain;
    background-position: center;
    cursor:pointer;
}

.back_button:hover{
   background: url("../assets/button_hover.png") no-repeat;
    background-size: contain;
    background-position: center;
}


.restart_button{
    height: 10vw;
      width: 100%;
  display: block;
 color: black;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5vw;
    margin-top: 5vh;
    background: url("../assets/button.png") no-repeat;
    background-size: contain;
    background-position: center;
    cursor:pointer;
}

.restart_button:hover{
 background: url("../assets/button_hover.png") no-repeat;
    background-size: contain;
    background-position: center;
}

#chooseDifficulty{
    width: 60vw;
    text-align: center;
    margin-left: 20vw;


}
button{
    background-color:  transparent;
    border-color: transparent;
}

#easy_button{
	height: 5vh;
	width: 12vw;
	color: black;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2vw;


	/*background-color: #cdc673;
	border-color: #cdc673;
    border-radius: 20%;*/
	position: absolute;
	left:  50vw;
	top:  60vh;
    display: inline-block;
    cursor:pointer;
}

#easy_button:hover{
 
}

#medium_button{
	height: 5vh;
    width: 12vw;
    color: black;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2vw;



	position: absolute;
	left:  62.5vw;
	top:  60vh;
    display: inline-block;
    cursor:pointer;
}

#medium_button:hover{
  
}

#hard_button{
	height: 5vh;
    width: 12vw;
    color: black;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2vw;



	position: absolute;
	left:  75vw;
	top:  60vh;
    display: inline-block;
    cursor:pointer;
}
#hard_button:hover{
 
}



