@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(180deg, #f7c9d6 0%, #f4b8c6 100%);
    font-family: 'Nunito', 'Arial', sans-serif;
    flex-direction: column;
  }
  
  .container {
    text-align: center;
    background: #ffffff;
    border-radius: 22px;
    padding: 26px 24px 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    width: min(90vw, 520px);
  }
  
  h1 {
    font-size: 2.1em;
    color: #111111;
    margin: 10px 0 6px;
    font-weight: 700;
  }
  
  .buttons {
    margin-top: 18px;
    position: relative;
    width: 100%;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .note-text {
    margin: 6px 0 0;
    font-size: 0.95em;
    color: #6b6b6b;
    font-family: inherit;
    font-weight: 600;
  }
  
  .yes-button {
    font-size: 1.4em;
    padding: 10px 22px;
    background-color: #e5395a;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    width: 160px;
    height: 54px;
    box-shadow: 0 10px 18px rgba(229, 57, 90, 0.28);
    position: absolute;
    z-index: 1;
  }
  
  .no-button {
    font-size: 1em;
    padding: 6px 14px;
    background-color: #e6e6e6;
    color: #333333;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    width: 84px;
    height: 34px;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    z-index: 2;
  }
  
  .gif_container img {
    max-width: 140px;
    height: auto;
    border-radius: 10px;
    margin-top: 6px;
  }
