.popUP {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .popUP-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
  }
  
  .close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover {
    color: #000;
  }
  
  .Pop-discord-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #7289DA;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .Pop-discord-btn:hover {
    background-color: #5865F2;
  }

  .Pop-github-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #24292e; /* GitHub dark blue color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .Pop-github-btn:hover {
    background-color: #1c1f23; /* Slightly darker shade for hover */
  }
  