#modal{
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    z-index: 99999;
}
#modal.active{
    display: flex !important; 
}

#modal .content{
    padding: 50px;
    background-color: white;
    color: black;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

#modal .content .btn-close-modal{
    border: none;
}