
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background: #181818; /* Dark background for finessse */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: sans-serif;
  }

  /* The large white background card (the mom) */
  .background-card {
    position: relative;
    width: 400px;
    padding: 32px 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  }

  /* Otter card*/
  .header-card {
    position: absolute;
    top: -20px; 
    left: 50%; 
    transform: translateX(-50%);
    width: 350px;
    background: #ff3399;
    border-radius: 8px;
    color: #000000;
    padding: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-weight: bold;
    font-size: 32px;
  }

  .background-content {
    color: #333;
    line-height: 1.5;
    margin-top: 30px;
  }
