@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;1,300&display=swap');

/*Geral*/

html{
    font-family:'Montserrat', sans-serif;
}
#app{
    display: flex;
    flex-direction: column;
}
.panel{
    margin: 10px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
/*Score Area*/
.scores{
    display: flex;
}
.score{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.score h1{
    font-weight: 300;
    font-size: 1.6rem;
}
.life-bar{
    width: 80%;
    height: 20px;
    border: 1px solid #AAA;
}
.life-bar .life{
    display: flex;
    justify-content: center;
    height: 100%; 
    width: 50%;
    background-color: green;
}
.life-bar .life.danger{
    background-color: red;
}
/*Result Area*/
.result{
    display: flex;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 600;
}
.result .win{
    color: green;
}
.result .lose{
    color: red;
}

/*Buttons / Control Game Area*/

.buttons{
    display: flex;
    justify-content: center;
}
.btn{
    padding: 5px 10px;
    margin: 0px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 1.1rem;
    border: none;
}
.start{
    background-color: #5f5ffd;
    color: #fff;
}
.attack{
    background-color: #fd4b4b;
    color: #fff;
}
.special-attack{
    background-color: #f87342;
    color: #fff;
}
.heal{
    background-color: #64c064;
    color: #fff;
}
.quit{
    background-color: black;
    color: white;
}
/*Logs Area*/
.logs ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0%;
}
.logs ul li{
    display: flex;
    justify-content: center;
    margin: 4px 0;
    padding: 3px 0;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    border-radius: 3px;
}
.player{
    background-color: #6868f8a4;
    color: #fff;
}
.monster{
    background-color: #fa7a7aa4;
    color: #fff;
}