.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .popup {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    z-index: 9999;
    max-width: 400px;
    min-width: 300px;
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
  }
  
  .popup h3 {
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  .popup p {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .names a {
    color: white;
    cursor: pointer;
  }
  
  .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: white;
    cursor: pointer;
  }
  
  .names a:not(:last-child):after {
    content: "|";
    margin-right: 5px;
    margin-left: 5px;
  }