@import '/UI/Style.scss';

Health {
    width: 200px;
    height: 100px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(ui/hud/ui_hud_health_background.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    font-family: $font-main;
    font-size: 64px;
    color: white;
    flex-direction: row;
    gap: 10px;
    font-weight: bold;
    transition: transform 0.25s ease-in-out;

    &:intro {
        transform: translateY(100%);
    }

    >img {
        height: 48px;
        aspect-ratio: 1;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}