*
{
    box-sizing: border-box;
    font-family: 'Press Start 2P', cursive;
}
.BarParent
{
    position: relative;
    display: inline-block;
}
.BarChild
{
    position: absolute;
    display: flex;
    width: 100%;
    align-items: center;
    padding: 20px;
}
.PlayerHealthParent
{
    position: relative; 
    width: 100%;
    display: flex;
    justify-content: flex-end;
    border-top: 4px solid whitesmoke;
    border-left: 4px solid whitesmoke;
    border-bottom: 4px solid whitesmoke;
}
.PlayerHealthChild
{
    background-color: red; 
    height: 30px; 
    width: 100%;
}
.PlayerHealth
{
    position: absolute; 
    background-color:#b8c4dd; 
    top: 0; 
    bottom: 0; 
    right: 0; 
    width: 100%;
}
.Timer
{
    background-color: rgba(15, 15, 15, 0.588);
    height: 50px;
    width: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: azure;
    border: 4px solid whitesmoke;
}
.EnemyHealthParent
{
    position: relative; 
    width: 100%;
    border-top: 4px solid whitesmoke;
    border-right: 4px solid whitesmoke;
    border-bottom: 4px solid whitesmoke;
}
.EnemyHealthChild
{
    background-color: red; 
    height: 30px
}
.EnemyHealth
{
    position: absolute; 
    background-color: #b8c4dd; 
    top: 0; 
    bottom: 0; 
    right: 0; 
    left: 0;
}
.DisplayText
{
    position: absolute; 
    color:aliceblue; 
    align-items: center; 
    justify-content: center; 
    top: 0; 
    bottom: 0; 
    right: 0; 
    left: 0; 
    display: none;
}