.game-container {

    width:600px;


}



h1 {

    font-size:40px;

    text-shadow:
        3px 3px #006633;

}



.score-board {

    display:flex;

    justify-content:space-around;

    font-size:24px;

}



.score-board span {

    display:block;

    font-size:40px;

}



.battle-area {

    display:flex;

    justify-content:center;

    align-items:center;

    gap:40px;

    margin:30px;

}



.choice img {

    width:120px;

    height:120px;

}



.vs {

    font-size:40px;

    color:white;

}



button {

    background:black;

    color:#00ff99;

    border:2px solid #00ff99;

    padding:15px;

    margin:10px;

    font-size:18px;

    cursor:pointer;

}



button:hover {

    background:#00ff99;

    color:black;

}



#result {

    color:white;

    min-height:40px;

}