      .heartbeat {
        width: 100px;
        height: 100px;
        background-image: url("data:image/svg+xml,%3Csvg%0Axmlns='http://www.w3.org/2000/svg'%0Axmlns:xlink='http://www.w3.org/1999/xlink'%0Aversion='1.1' height='315' width='342' %3E%3Cdefs%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B .outline %7B stroke:none; stroke-width:0 %7D %5D%5D%3E%3C/style%3E%3Cg id='heart'%3E%3Cpath d='M0 200 v-200 h200 a100,100 90 0,1 0,200 a100,100 90 0,1 -200,0 z' /%3E%3C/g%3E%3C/defs%3E%3Cdesc%3E a nearly perfect heart made of two arcs and a right angle %3C/desc%3E%3Cuse xlink:href='%23heart' class='outline ' fill='%23dc005a' transform='rotate(225,150,121)' /%3E%3C/svg%3E%0A");
        background-size: contain;
        background-repeat: no-repeat;
        background-size: 90%;
        background-position: center;
        animation: beat 705ms infinite;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: sans-serif;
        font-size: 35px;
        font-weight: bold;
        color: white;
      }

      .heartbeat span {
        position: relative;
        top: -3px;
      }

      .heartbeat svg {
        width: 100%;
      }

      @keyframes beat {
        0% {
          background-size: 90%;
        }
        50% {
          background-size: 100%;
        }
        100% {
          background-size: 90%;
        }
      }

      .footsteps {
        display: flex;
        width: 100px;
        height: 100px;
      }

      .footsteps .left {
        position: relative;
        top: -5px;
        left: 2px;
        flex: 1 1 auto;
        background-image: url("data:image/svg+xml,%3Csvg version='1.1' baseProfile='tiny' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 24.94592 63.06558' overflow='visible' xml:space='preserve'%3E%3Cpath fill='%23825000' d='M21.36628,47.31862c1.716,6.142,2.633,14.534-4.311,15.623c-10.655,1.669-10.49-14.067-10.49-14.067 L21.36628,47.31862z'/%3E%3Cpath fill='%23825000' d='M0.14628,24.67862c-0.701-8.232,0.834-21.989,10.882-24.392c2.472-0.593,11.713-1.788,13.683,14.468 c1.431,11.827-4.151,25.243-4.151,25.243l-14.97,1.575C5.58928,41.57262,0.61228,30.18962,0.14628,24.67862z'/%3E%3C/svg%3E%0A");
        background-size: contain;
        background-repeat: no-repeat;
        background-size: 90%;
        background-position: center;
        animation: steps 1s infinite;
      }

      .footsteps .right {
        position: relative;
        top: 5px;
        left: -2px;
        flex: 1 1 auto;
        background-image: url("data:image/svg+xml,%3Csvg version='1.1' baseProfile='tiny' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 24.94592 63.06558' overflow='visible' xml:space='preserve'%3E%3Cpath fill='%23825000' d='M21.36628,47.31862c1.716,6.142,2.633,14.534-4.311,15.623c-10.655,1.669-10.49-14.067-10.49-14.067 L21.36628,47.31862z'/%3E%3Cpath fill='%23825000' d='M0.14628,24.67862c-0.701-8.232,0.834-21.989,10.882-24.392c2.472-0.593,11.713-1.788,13.683,14.468 c1.431,11.827-4.151,25.243-4.151,25.243l-14.97,1.575C5.58928,41.57262,0.61228,30.18962,0.14628,24.67862z'/%3E%3C/svg%3E%0A");
        background-size: contain;
        background-repeat: no-repeat;
        background-size: 90%;
        background-position: center;
        transform: scaleX(-1);
        animation: steps 1s 0.5s infinite;
      }

      @keyframes steps {
        0% {
          background-size: 60%;
          opacity: 1;
        }
        50% {
          background-size: 70%;
          opacity: 0.8;
        }
        100% {
          background-size: 60%;
          opacity: 1;
        }
      }

      .health {
        position: fixed;
        right: 0;
        bottom: 100px;
        text-align: center;
        font-family: sans-serif;
        color: white;
        font-weight: bold;
        font-size: 30px;
        z-index: 1000;
        min-width: 130px;
      }

      .beat {
        background: #dc005a;
        padding: 5px 25px 5px 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-width: 120px;
      }

      .beat .heartbeat {
        margin-bottom: 5px;
        margin-top: 5px;
        width: 50px;
        height: 50px;
        background-image: url("data:image/svg+xml,%3Csvg%0Axmlns='http://www.w3.org/2000/svg'%0Axmlns:xlink='http://www.w3.org/1999/xlink'%0Aversion='1.1' height='315' width='342' %3E%3Cdefs%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B .outline %7B stroke:none; stroke-width:0 %7D %5D%5D%3E%3C/style%3E%3Cg id='heart'%3E%3Cpath d='M0 200 v-200 h200 a100,100 90 0,1 0,200 a100,100 90 0,1 -200,0 z' /%3E%3C/g%3E%3C/defs%3E%3Cdesc%3E a nearly perfect heart made of two arcs and a right angle %3C/desc%3E%3Cuse xlink:href='%23heart' class='outline ' fill='%23ffffff' transform='rotate(225,150,121)' /%3E%3C/svg%3E%0A");
      }

      .steps {
        background: #004682;
        padding: 5px 25px 5px 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }

      .steps .footsteps {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
        margin-top: 5px;
      }

      .steps .footsteps .left {
        flex: 0 1 auto;
        width: 50%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg version='1.1' baseProfile='tiny' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 24.94592 63.06558' overflow='visible' xml:space='preserve'%3E%3Cpath fill='%23ffffff' d='M21.36628,47.31862c1.716,6.142,2.633,14.534-4.311,15.623c-10.655,1.669-10.49-14.067-10.49-14.067 L21.36628,47.31862z'/%3E%3Cpath fill='%23ffffff' d='M0.14628,24.67862c-0.701-8.232,0.834-21.989,10.882-24.392c2.472-0.593,11.713-1.788,13.683,14.468 c1.431,11.827-4.151,25.243-4.151,25.243l-14.97,1.575C5.58928,41.57262,0.61228,30.18962,0.14628,24.67862z'/%3E%3C/svg%3E%0A");
      }

      .steps .footsteps .right {
        flex: 0 1 auto;
        width: 50%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg version='1.1' baseProfile='tiny' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 24.94592 63.06558' overflow='visible' xml:space='preserve'%3E%3Cpath fill='%23ffffff' d='M21.36628,47.31862c1.716,6.142,2.633,14.534-4.311,15.623c-10.655,1.669-10.49-14.067-10.49-14.067 L21.36628,47.31862z'/%3E%3Cpath fill='%23ffffff' d='M0.14628,24.67862c-0.701-8.232,0.834-21.989,10.882-24.392c2.472-0.593,11.713-1.788,13.683,14.468 c1.431,11.827-4.151,25.243-4.151,25.243l-14.97,1.575C5.58928,41.57262,0.61228,30.18962,0.14628,24.67862z'/%3E%3C/svg%3E%0A");
      }

.content-inner:has(.health) {
  //opacity: 1 !important;
  transform: none !important;
  animation: blend-in 2s 0.5s forwards !important;
}

.health {
  transition: transform 0.5s ease-in-out;
}

.health.hidden {
  transform: translateX(150px);
}