        .modal {
            display: none; /* Hidden by default */
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            overflow: auto;
            background-color: rgb(0,0,0);
            background-color: rgba(0,0,0,0.4);
            transform: scale(1.1);
            transition: opacity 0.4s ease, transform 0.4s ease;
            z-index: 99;
        }
        
        /* Modal content */
        .modal-content {
            text-align: center;
            background-image: url('../public/playground_assets/modal_bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 30px;
            margin: 15% auto;
            padding: 4rem;
            width: 50%;
            height: auto;
            z-index: 99;
        }
        
        /* Close button */
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }
        
        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
        
        /* Button */
        .open-modal {
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
        }

        .modal-heading {
            font-size: 4rem;
            font-weight: 600;
        }

        @media(max-width: 991px) {
            .modal {
                padding-top: 3rem;
                height: 100%;
            }
            .modal-heading {
                font-size: 2rem;
                font-weight: 600;
            }
            .modal-content {
                padding: 2rem;
                width: 80%;
 
            }
        }