.carousel-inner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.carousel-caption h1 {
    font-size: 4vw;
    color: var(--warning);
    text-shadow: 2px 2px #000;
    font-family: 'Cairo', sans-serif;
    padding-bottom: 0.3em;
}

.carousel-caption p {
    font-size: 1.8vw;
    text-transform: uppercase;
}

.carousel-caption a {
    color: #fff;
}

@media (max-width: 768px) {
    .carousel-inner img {
        height: 220px;

    }
    .carousel-caption h1 {
        font-size: 6vw;
        font-weight: 600;
    }
    .carousel-caption p {
        font-size: 3vw;
    }
}

@media (device-width: 100vw) and (device-height: 100vh) {
    .carousel-inner img {
        height: 100%;

    }
}

.carousel-item span {
    line-height: 2em;
    box-shadow: 10px 0px 0px rgba(0, 0, 0, 0.5), -10px 0px 0px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
}