/* shared.css - Style sheet for all pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: monospace;
  }
  
  body {
    background-color: #000000; /* Light pink background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
  }
  
  .container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    /* background-color: rgb(230, 230, 230); */
    border: solid 3px white;
    padding: 50px;
    border-radius: 10px;
    margin-bottom: 30px;
  }
  
  h1 {
    color: #dc006e;
    margin-bottom: 20px;
  }
  
  .heart-container {
    position: relative;
    width: 400px;
    height: 450px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .heart-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
  }
  
  .heart-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .memory-text {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    line-height: 1.6;
  }
  
  .navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .btn {
    padding: 12px 25px;
    background-color: #dc006e;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .btn:hover {
    background-color: #a30051;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
  }
  
  .page-indicator {
    margin-top: 20px;
    color: #888;
    font-style: italic;
  }
  
  @media (max-width: 600px) {
    .heart-container {
      width: 100%;
      max-width: 300px;
      height: 350px;
    }
    
    .container {
      padding: 25px;
    }
  }