*{
    color: white;
}

body{
    background-color: rgb(248, 248, 248);
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    margin:0;
    padding:0;
}

.game-wrapper{
    width: 90vw;
    height:90vh;
    background-color: rgb(99, 99, 146);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}

.player-enemy-life{
    display: flex;
    gap:40px;
    text-align: center;
}


.game-content{
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.comLogWrapper{
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border:3px solid black;
    box-sizing: border-box;
}


.textStuff{
    display: flex;
    width: 600px;
    justify-content: space-around;
}
#comLog{
    width:40%;
    height: 200px;
    margin-left: 5px;
    box-sizing: border-box;
}

.playerStats{
    border-right: 3px solid black;
    width: 60%;
    height: 200px;
    box-sizing: border-box;
}

.playerStat{
    margin-left: 5px;
    margin-right: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap:10px
    
}

.statBtn{
    height:25px;
    width: 40px;
    background-color: rgb(126, 246, 146);
    color: black;
}








button{
    height:35px;
    width: 100px;
    border-radius: 999px;
    background-color: red;
    border: none;
}

button:active{
    scale:0.95;
}