NameTag {
    
    font-family: Roboto Condensed;
    font-weight: bold;
    font-size: 20px;
    color: white;
    
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    border-radius: 20px;
    
    gap: 10px;
    
    &.local {
        display: none;
    }
    
    div {
        flex-shrink: 0;
    }
    
    .name {
        font-size: 20px;
    }
    
    .scores {
        // font-size: 16px;
        gap: 10px;
    }
    
    .drift-current {
       color: red;
    }
    
    .drift-max {
        color: orange;
    }
    
    .drift-total {
        color: yellow;
    }
}