GrubTag {
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;

    .title {
        font-size: 72px;
        font-family: Londrina Solid;
        letter-spacing: 4px;
        font-weight: bold;
        text-stroke: 8px black;
        text-overflow: ellipsis;
    }

    .health-container {
        width: 80%;
        height: 36px;
        border: 6px black;
        border-radius: 12px;
        background-color: darken(lightgreen, 60%);
        flex-wrap: nowrap;

        .health-bar {
            height: 100%;
            background-image: linear-gradient(lightgreen, darken(lightgreen, 20%));
            border-radius: 8px;
            transition: width 1s ease-out;
        }

        .health-bar-overflow {
            height: 100%;
            background-color: black;
            border-radius: 8px;
            transition: width 1s ease-out;
        }
    }
}