*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
}
#app{
    height: 100vh;
    width: 100vw;
    font-family: 'Lato';
    background-color: rgb(26, 26, 27);
    display: flex;
    justify-content: center;
    align-items: center;
}
section{
    margin: 30px 0;
}
.character{
    margin: 30px auto;
    width: 80%;
    height: 20%;
    display: flex;
    justify-items: center;
    align-items: center;
 
    

}
.hero, .monster{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    color: white;
    margin: 0 5px;
}
.life{
    height: 30px;
    background-color: yellowgreen;
    align-self: flex-start;
    width: 100%;
    transition: width .5s ease;
}
/*.lifeHero::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: yellowgreen;
}
.lifeMonster::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: yellowgreen;
   
}/*/
.skills{
    margin: 0 auto;
    width: 80%;
    height: auto;
    display: flex;
    justify-content: center;
}
.btn{
    margin: 0 5px;
    width: 150px;
    height: 50px;
    outline: none;
    border: none;
    font-size: 125%;
    cursor: pointer;
}
.actionList{
    width: 80%;
    max-height: 60px;
    min-height: 60px;
    overflow-y: scroll;
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
}
.actionListItem{
    color: white;
}
.welcomeScreen{
  display: flex;
  justify-content: center;
  align-items: center;
}