PodiumPlayerInfo {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    div {
        font-family: "Balsamiq Sans";
        font-size: 64px;
        text-shadow: 2px 2px 2px black;
        text-stroke: 3px black;
        color: white;

        &.name {
            font-size: 72px;
            font-weight: bold;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }
    }

    .avatar {
        width: 100px;
        height: 100px;
        border: 2px solid black;
        border-radius: 10px;
        background-repeat: no-repeat;
        background-size: contain;
    }
}
