.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(48, 63, 159);
    background-color: rgba(48, 63, 159,0.99);
}

.modal-content {
    color: #f1f1f1;
    margin: auto;
    padding: 20px;
    width: 70%;
}
.modal-header {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 40px;
}

.close {
    cursor: pointer;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 4px;
}
.modal-body {
    margin-bottom: 20px;
    font-size: 24px;
}
.modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-btn {
    background-color: #fff;
    color: rgb(48, 63, 159);
    border: none;
    padding: 10px 20px;
    font-size: 24px;
    cursor: pointer;
}
.modal-btn:hover, .modal-btn:focus, .modal-btn:active {
    color: rgb(48, 63, 159);
}
