@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cabin&display=swap');
*{
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}
body{
    font-family: 'Cabin', sans-serif;
    background: #222222;
    color: #F3EFE0;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    margin: auto;
}
.header{
    font-family: 'Bebas Neue', cursive;
    align-self: flex-start;
    width: 100vw;
    text-align: center;
    padding: 1.5rem;
    background-color: #434242;
    font-size: 2.5rem;
}
.stats{
    display: flex;
    align-items: center;
    justify-content: space-around;
    /* border: 2px solid red; */
    /* border-bottom: #F3EFE0 solid 1px ; */
}
#score{
    padding: 20px;
    text-align: right;
    width: 20vw;
    /* padding-right: 10rem; */
    font-size: 1.4rem;
    display: flex;
    /* border: 2px solid red; */
    justify-content: flex-end;
    /* justify-content: center; */
    /* transform: translateX(100%); */
}
#lives{
    padding: 20px;
    text-align: right;
    width: 20vw;
    /* padding-right: 10rem; */
    font-size: 1.4rem;
    display: flex;
    /* border: 2px solid blue; */
    /* transform: translateX(100%); */
}
.desc{
    /* border: 2px solid red; */
    padding-top: 20px;
    text-align: justify;
    line-height: 30px;
    font-size: larger;
    width: 50vw;

    /* align-self: center; */
    margin: auto;
    color: #f3efe089;

}
.container{
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
    width: 100vw;
    gap: 20px;
}
.btnsCont{
    position: relative;
    bottom: -50px;
    display: flex;
    flex-direction: row;
    gap: 1rem;    
}
.btn{
    padding: 15px;
    border-radius: .4rem;
    border: none;
    cursor: pointer;
    color: #222222;
    background-color: #F3EFE0;
    transition: all 0.4s ease;
}
.btn:hover{
    background-color: #22A39F;
    transform: scale(0.9);
}
#dispWord{
    font-size: 2rem;
    cursor:default
}
#endGameCont{
    position: fixed;
    bottom: 8%;
    
}
#btnReplay{
    /* position: fixed; */
    /* bottom: 20%; */
    margin: 0;
    /* padding: 0; */

}
/* .dispHide{
    opacity: 0;
    pointer-events: none;
} */
.dispCompleteHideBTNS{
    display: none;
}
#scoreVal{
    min-width: 30px;
}
#livesVal{
    min-width: 20px;
}

/* utilities */
.yellow{
    color: #22A39F;
}