/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffdde1, #ee9ca7);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
  
  .container {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    max-width: 400px;
    width: 100%;
  }
  
  h1 {
    font-size: 2em;
    margin-bottom: 15px;
  }
  
  .dear-mom {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ffe4e1;
  }
  
  p {
    font-size: 1.1em;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .sign-off {
    font-size: 1.2em;
    font-style: italic;
    color: #fff;  /* Changed to white */
  }
  
  /* Styling for responsive image */
  .mother-image {
    width: 100%;      /* Make image responsive to container width */
    max-width: 100%;  /* Prevent the image from growing too large */
    height: auto;     /* Maintain aspect ratio */
    margin-top: 20px; /* Space between message and image */
    border-radius: 10px; /* Rounded corners for the image */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Slight shadow */
  }
  