.modal {
    display: none;
    position: fixed;
    z-index: 1000; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%); 
    width: 30%; 
    height: 30%; 
    overflow: auto; 
}

.modal-content {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    border-radius: 10px;
    padding: 50px;

    background-size: cover;
    background-position: center;
    background-image: url('/img/red-frosted-glass2.png');
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#modalMessage {
    color: black;
    font-size: 20px;
}

@media (max-width: 768px) {
    #modalMessage {
        font-size: 14px;
    }

    .modal {
        width: 90%;
    }
}