#preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 9999;
}

.hero {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: fit-content;
    overflow: hidden;
    margin: auto;
}

.jumbotron {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/header.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
}

.gallery .card{
    margin: 0 1rem;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    border: none;
    width: fit-content;
    height: 100%;
    aspect-ratio: 3/4;
    border: 2px white solid
}

/* @media (min-width: 600px) {
    .gallery .carousel-inner {
     display: flex;
    }

    .gallery .carousel-item {
     margin-right: 0;
     flex: 0 0 33.333333%;
     display: block;
    }

    .gallery .carousel-inner{
        padding: 1em;
    }

    .gallery .carousel-control-prev, .carousel-control-next{
        background-color: #e1e1e1;
        width: 6vh;
        height: 6vh;
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
    }

} */

@media screen and (max-width: 599px) {
    .gallery {
        max-width: 500px;
        margin: 0 auto;
        padding: 0 auto;
    }

    .hero p,
    .hero a
    {
        font-size: smaller;
    }
}