ui/hud.razor.scss
@import "_theme.scss";

Hud {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    flex-direction: column;
    font-family: $font-body;
    color: $white;

    .frame {
        position: absolute;
        left: 18px;
        top: 18px;
        right: 18px;
        bottom: 18px;
        outline: 50px solid $ink;
        border-radius: 38px;
        pointer-events: none;
        z-index: 150;
    }
}