body {
    font-family: Arial, sans-serif;
    background: #ffc0e3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
  }
  
  .container h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  .copy-button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .copy-button:hover {
    background-color: #0056b3;
  }
  
