.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.modal-content {
    background-color: #fff;
    position: relative; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    padding: 20px;
    border: 1px solid #888;
    width: 75%;
    height: 675px;
    max-width: 600px;
    text-align: center;
    position: relative;
}


.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    color: blue;
    font-size: 30px;
    transition: color 0.3s, transform 0.3s;
    z-index: 1001; 
}

.close-btn:hover {
    color: #add8e6;
    transform: scale(1.1);
}

.redirect-btn {
    display: block;
    width: 190px; 
    margin: 3px auto;
    text-align: center;
    padding: 10px 20px; 
    background-color: #007bff;
    color: white;
    text-decoration: none;
    font-size: 15px; 
}

.redirect-btn:hover {
    background-color: #add8e6;
}

.text-center {
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .model {
        width: 50%;
        height: 90%;
    }
}