.slideshow-container {
            /*width: 40vh;*/
            position: relative;
            margin: 40px auto;
            background-color: #000;
            color: #fff;
            padding: 20px;
    font-family: Inter, sans-serif;
        }

        .slide {
            display: none;
            width: 100%;
            text-align: left;
            box-sizing: border-box;
        }


        .slide.active {
            display: block;
        }

        .slide h2 {
            font-size: 20px;
            margin-bottom: 10px;
            font-family: "Uni Sans Heavy Regular", sans-serif;
        }

        .slide p {
            font-size: 16px;
        }

        .nav-container {
            position: absolute;
            bottom: -30px;
            /*left: 50%;*/
            /*transform: translateX(-50%);*/
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .prev, .next {
            cursor: pointer;
            width: auto;
            padding: 5px;
            color: #fff;
            font-size: 18px;
            transition: 0.6s ease;
            user-select: none;
            background-color: transparent;
        }

        .prev {
            margin-right: 10px;
        }

        .next {
            margin-left: 10px;
        }

        .prev:hover, .next:hover {
            color: #ccc;
        }

        .dots-container {
            display: inline-flex;
            align-items: center;
        }

        .dot {
            cursor: pointer;
            height: 10px;
            width: 10px;
            margin: 0 5px;
            background-color: #242222;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.6s ease;
        }

        .active-dot {
            background-color: #ffffff;
        }
.glowing-text {
    position: relative;
    color: #fff;
      font-family: "Uni Sans Heavy Regular", sans-serif;
  font-weight: 400;
  font-style: normal;

    font-size: 2rem;
    letter-spacing: 2px;
    text-align: left;
    text-shadow: 0 0 20px rgba(255, 255, 255, 1),
                 0 0 40px rgba(255, 255, 255, 0.8),
                 0 0 80px rgba(255, 255, 255, 0.6);
}

.demo {

    width: 70vw
}




@media screen and (max-width: 768px) {

    .split {
        display: flex;
        flex-direction: column;
    }

}

.split {
    display: grid;
    grid-template-columns: 3fr 4fr 3fr;
}


.split-1c {
    margin-top: 20px;
    grid-column: 1;
}

.split-2c {
    grid-column: 3;
    /*border-top: 1px solid #2d2b2b;*/
    border-left: 1px solid #1b1a1a;
    border-right: 1px solid #1b1a1a;
}
