    .overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    
    padding:50px 50px 50px 50px;
  }
  
  .overlay.minimized {
    display:none !important;
    width: 1px;
    height: 1px;
    border-radius: 50%;
    bottom: 1px;
    right: 1px;
    top: auto;
    left: auto;
    background: rgba(0,0,0,0.8);
    font-size: 0;
    position: fixed;
     
    padding:0 0 0 0;
  }

  .overlay a {
    color: #d90202;
    text-decoration: none;
    margin: 5px 0;
  }
  .overlay a:hover {
    text-decoration: underline;
  }
