﻿NameTag {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    
    .top {
        justify-content: center;
        align-items: center;
    }

    .title {
        font-family: Roboto;
        font-size: 42px;
        font-weight: bold;
        white-space: nowrap;
        color: #ffffff;
        text-shadow: 0px 0px 2px #252525;
    }

    .avatar {
        width: 50px;
        height: 50px;
        margin-right: 15px;
        border-radius: 100px;
        background-size: cover;
    }
    
    .health {
        font-family: Roboto;
        font-weight: bold;
        font-size: 26px;
        white-space: nowrap;
        color: #00b909;
        text-shadow: 0px 0px 2px #252525;
    }
}
