body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    height: 100vh;
    background: #f9e3e3;
    font-family: 'Pacifico', cursive;
    overflow: hidden;
  }
  
  h1, #timer {
    font-size: 1.6rem; /* Match the size of the h1 */
    color: #ff6b6b; /* Match the color of the h1 */
    margin: 0px 2px;
    font-weight: normal; /* Optional: Match the font weight */
    text-align: center; /* Ensure alignment matches */
  }
  
  .images img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 5px solid #ff6b6b;
  }


  .gif_container img {
    height: 155px; /* Adjust the height as needed */
    width: auto; /* Maintain aspect ratio */
}

  .container {
    text-align: center;
    position: relative;
  }
  
  .animation {
    position: relative; /* Change to relative to position it within the container */
    margin-bottom: 50px; /* Add spacing between the heart and the text */
    margin-top: 75px; /* Add spacing between the heart and the text */
  }
  
  .heart {
    position: relative; /* Ensure the heart stays within the container */
    display: inline-block; /* Center the heart */
    top: 0; /* Reset any offsets */
    left: 0; /* Reset any offsets */
    width: 100px;
    height: 90px;
    background: #ff6b6b;
    transform: rotate(-45deg);
    animation: pulse 1.5s infinite;
  }
  
  .heart::before,
  .heart::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 90px;
    background: #ff6b6b;
    border-radius: 50%;
  }
  
  .heart::before {
    top: -50px;
    left: 0;
  }
  
  .heart::after {
    left: 50px;
    top: 0;
  }
  
  .buttons {
    margin-bottom: 10px;
  }
  
  .no-button {
    font-size: 1.5em;
    font-family: 'Pacifico', cursive;
    padding: 10px 20px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1) rotate(-45deg);
    }
    50% {
      transform: scale(1.2) rotate(-45deg);
    }
  }