.exitban {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.75); 
    justify-content: center; 
    align-items: center;     
    z-index: 9999;
    pointer-events: none;
}
.exitban.show {
    display: flex;
    pointer-events: auto;
}

.exitcard {
    background-color: black;
    box-shadow: 0px 0px 12px 11px rgba(202, 7, 219, 0.37);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 90%; 
    max-width: 350px;
    padding: 30px;
    position: relative;
}

.exttitle {
    font-family:'Russo One';
    color: rgb(197, 50, 173);
    text-align: center;
}
.exitchoose {
    display: flex;
}
.extchange {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.exitbtn {
    font-size: 1.7rem;
    color: rgb(197, 50, 173);
    font-family:'Russo One';
    background-color: transparent;
    border: none;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 768px) {
    .exitcard {
        width: 70%;
    }
}