ui/playerdeath/playerdeathhud.razor.scss
PlayerDeathHUD {

    .name {
        position: absolute;
        top: 30%;
        left: 70%;
        color: white;
        background-color: rgba(210, 40, 40, 0.8);
        padding: 8px;
        font-size: 72px;
        transform: rotate(20deg);
    }

    .hp {
        position: absolute;
        top: 22%;
        left: 70%;
        color: white;
        background-color: rgba(40, 200, 40, 1);
        padding: 8px;
        font-size: 36px;
        transform: rotate(11deg);
        font-weight: bold;
    }

    .dead {
        position: absolute;
        top: 72%;
        left: 10%;
        color: white;
        background-color: rgba(40, 200, 40, 1);
        padding: 8px;
        font-size: 86px;
        transform: rotate(-11deg);
    }
}