.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 80px);
    max-width: 700px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
    background-color: #18157c;
}

.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark background overlay */
    z-index: 9999; /* Below the modal but above the page content */
}

.paragraph-content {
    font-family: Raleway;
    color: white;
    font-size: 20px;
    text-align: center;
    width: 100%;
}