    @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;800&display=swap');

        :root {
            --primary-color: #6823a0;
            --hover-bg: #572090;
            --light-bg: #f9f6fb;
            --light-color: #333;
            --bg-light: #ffffff;
        }

      /*  body {
            font-family: 'Nunito', sans-serif;
            margin: 0;
            padding: 20px;
            background-color: var(--light-bg);
            color: var(--light-color);
        }*/

        .containerM {
            max-width: 1200px;
            margin: auto;
            
        }

        .headerM {
            text-align: center;
            margin-bottom: 20px;
        }

        .headerM h1 {
            color: var(--primary-color);
            font-size: 28px;
        }

        .carouselM {
            position: relative;
            overflow: hidden;
            border-radius: 0px;
         
        }

        .carousel-trackM {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .meme-cardM {
            min-width: 100%;
            text-align: center;
            background-color: var(--bg-light);
        }

        .meme-cardM img {
            width: 100%;
            max-height: 1200px;
            object-fit: cover;
        }

        .meme-actions {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
            padding-bottom: 15px;
        }

        .action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            color: #fff;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .action-btn:hover {
            background-color: var(--hover-bg);
        }

        .carousel-buttonsM {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            z-index: 2;
        }

        .carousel-btn {
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .carousel-btn2 {
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .carousel-btn:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }