TankGameHUD {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    //justify-content: center;
    //align-items: center;
    font-weight: bold;
    border-radius: 20px;

    .container {
        width: 150px;
        padding: 5px;
        justify-content: center;
        flex-direction: row;
    }

    .players {
        width: 450px;
        height: 50%;
        flex-direction: column;
        padding: 5px;
    }

    .title {
        text-shadow: 1px 1px 1px black;
        width: 1000px;
        //height: 50px;
        font-size: 25px;
        font-family: Poppins;
        color: #fff;
    }

    .health {
        position: absolute;
        background-image: url( textures/ui/p1/heart.png );
        background-size: cover;
        width: 50px;
        height: 50px;
        align-content: baseline;
        justify-content: center;
        color: white;
        font-size: 35px;
        font-family: Poppins;
    }
}
