#slideshow .carousel-item {
    position: relative;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.box {
    height: 200px;
    /* Adjust this value to make the boxes square */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
    border-radius: 8px;
    transition: transform 0.3s;
}

.box:hover {
    transform: scale(1.05);
}

.slogan_bg {
    background: rgb(2, 0, 41);
    background: linear-gradient(90deg, rgba(2, 0, 41, 1) 0%, rgba(102, 16, 242, 1) 0%, rgba(0, 76, 92, 1) 100%);
}