ui/infoboard.razor.scss
InfoBoard {
    .board {
        flex-direction: column;
        justify-content: flex-start;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        font-family: Poppins;
        padding: 24px;
        width: 100%;
        height: 100%;
    }

    .title {
        font-size: 180px;
        font-weight: 800;
        margin-bottom: 32px;
        width: 100%;
        justify-content: center;
    }

    .page {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-grow: 1;
    }

    .controls-list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .control-row {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 20px 32px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        width: 100%;
        margin-bottom: 20px;

        .label {
            font-size: 96px;
            font-weight: 600;
            width: 800px;
            justify-content: center;
        }

        .glyphs {
            flex-direction: row;
            align-items: center;
            justify-content: center;
            width: 800px;

            .glyph {
                width: 140px;
                height: 140px;
                margin: 0 8px;
            }
        }
    }

    .title-page {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-grow: 1;

        .title-thumbnail {
            width: 100%;
            height: 100%;
            // Required to make the thumbnail image appear darker, else it gets washed out due to the post processing effects in the game world.
            opacity: 0.5;
        }
    }
}