@import "../Styles/styles.scss";

NameTagPanel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-family: $font-secondary;

    .card {
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.8);
        border-bottom: 12px solid $text-primary-color;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        overflow: hidden;
        padding: 10px 20px;
        justify-content: center;
        align-items: center;
        gap: 20px;

        .name {
            font-size: 40px;
            color: $text-primary-color;
        }

        .gameobject {
            color: #00ff21;
            font-size: 20px;
        }
    }
}
