@import '/UI/Style.scss';

PlayerTag {
    width: 100%;
    height: 100%;
    font-family: $font-main;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;

    &.visible {
        opacity: 1;
    }

    > p {
        font-size: 48px;
        white-space: nowrap;
        max-width: 100%;
    }

    > img {
        height: 48px;
        aspect-ratio: 1;
    }
}