body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: #fff; 
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .heartsSVG {
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
  }
  

body {
    background-color: #F9DBBD;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

svg {
    width: 100%;
    height: auto;
    max-height: 90vh; /* Keeps it from overflowing on short screens */
    visibility: hidden;
    overflow: visible;
}

.tooltip {
    max-width: 90vw; /* Prevent overflow on smaller devices */
    word-wrap: break-word;
    white-space: normal;
}

.heart {
    width: 20px;
    height: 20px;
}

.left-heart {
    margin-right: 5px;
}

.right-heart {
    margin-left: 5px;
}
