Я думаю, это то, что вы имели в виду, по крайней мере, это то, что я понял.
Добавьте этот стиль:
.card {
position: fixed !important;
top: 0;
right: 0;
left: 0;
}
.modal {
display: none;
z-index: -10000000000000;
padding-top: 100px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(0%,-50%);
width: 100%;
max-height: 100%;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
}
.modal
теперь будетпо центру top: 50%; left: 50%; transform: translate(0%,-50%);
.card
теперь будет оставаться на вершине, возможно, вы указали неправильный селектор.