<Application x:Class="Life.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:local="clr-namespace:Life"
             StartupUri="MainWindow.xaml">
    <Application.Resources>
         <Style x:Key="Header" TargetType="TextBlock">
             <Setter Property="FontSize" Value="16" />
             <Setter Property="FontWeight" Value="Medium"/>
             <Setter Property="Margin" Value="0 0 18 0"/>
         </Style>
         <Style x:Key="Value" TargetType="TextBlock">
             <Setter Property="FontSize" Value="24" />
             <Setter Property="FontWeight" Value="Black"/>
         </Style>
    </Application.Resources>
</Application>