body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: OpenSans, Arial, sans-serif; /* Helvetica as the font family */
    background-color: rgb(255, 218, 224); /* Set background color to pink */
  }
  
  .container {
    text-align: center;
  }
  
  .valentine-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    max-width: 400px; /* Set maximum width */
    max-height: 400px; /* Set maximum height */
  }
  
  .buttons {
    margin-top: 20px;
  }
  
  button {
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 10px; /* Curved edges */
    border: none;
  }
  
  .yes-button {
    background-color: rgb(237, 49, 80); /* Pink background for "Yes" button */
    color: white;
  }
  
  .no-button {
    background-color: rgb(182, 0, 0); /* Red background for "No" button */
    color: white;
  }
  