*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html,body { 
    font-size: 1.2em;
    /* font-family: 'Arvo', serif; */
    text-align: center;
    background-color: whitesmoke;
}

::-webkit-scrollbar{
    display: none !important;;
}

a {
    color: #000;
    margin: 0.2em;
    text-decoration: none;
}

/* #hangm_gameover{
    color: red !important;
} */

#hangm_gameover, #hangm_victory {
    font-size: 2em;
}

section#hangman {
    height: 30.5em;
    overflow: hidden;
}

#hangm {
    text-align: center;
    /* color: red; */
}

.h {
    opacity: 0;
}

#hangm_animation {
    height: 7.5em;
    margin: 0 auto;
    width: 11em;
}

#hangm_word, 
#hangm_guesses {
    letter-spacing: 1em;
}

.man_head {
	border-radius: 50%;
	width: 40px;
	height: 40px; 
    background-color: #FFCC99;
    position: relative;
    bottom: 150px;
    left: 112px;
	/* width and height can be anything, as long as they're equal */
}

.man_upper {
    background: #000066;
    width: 40px;
    height: 50px;
    position: relative;
    left: 112px;
    bottom: 150px;
}

.man_lower {
    background: #330099;
    width: 30px;
    height: 30px;
    position: relative;
    left: 117px;
    bottom: 150px;
}

.pole_h {
    background: #000;
    width: 100px;
    height: 8px;
    position: relative;
    left: 46px;
}

.pole_v {
    width: 8px;
    height: 150px;
    background: #000;
    left: 46px;
    position: relative;
}

.pole_b {
    border-color: transparent transparent #000000 transparent;
    border-width: 0 50px 50px 50px;
    border-style: solid;
    width: 0;
    height: 0;
    bottom: 10px;
    position: relative;
}

.rope {
    width: 6px;
    height: 40px;
    background-color: #996633;
    position: relative;
    bottom: 150px;
    left: 130px;
}

/* nav */

.nav{
    background-color: rgba(5,20,30,0.5);
    height:9vh;
    display: flex;
    justify-content: start;
    margin-bottom: 20px;
}

.gameicon{
    position: absolute;
    height: 100px;
    bottom: -32px;
    right: -60px;
    
}
.navlogo{
    display: flex;
    /* background-color: red; */
    margin-left: 30px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer{
    background-color: rgba(5,20,30,0.5);
    height:9vh;
    display: flex;
}
.copyrightssss{
    height: 4vh;
    padding: 10px;
}

.btn{
    width: 300px;
    padding: 0.5%;
    border-radius: 10px;
    border: none;
    background-color: rgb(5,20,30,0.5);
    cursor: pointer;
    color: white;
}

.guessbox{
    width: 250px;
    height: 5vh;
    outline: none;  
    border: 1px solid black;
    border-radius: 10px;
    font-size: 1rem;
    padding: 0 10px;
}

.heading{
    margin-bottom: 5px;
}