.projects {
    display: flex;
    background-color: var(--color-background);
    opacity: 0.9;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

.projects h1 {
    font-size: 3rem;
    color: var(--color-heading);
    text-align: center;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}

.carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100vw - 30px);
    margin: 20px auto;
    max-width: 700px;

}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
    background-color: rgba(0,0,0,0.1);
    border-radius: 50%;
}

.project__img {
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
    border: 1px solid white
    
}

.carousel-caption {
    pointer-events: none;
    color: white;
    text-shadow: 0px 0px 3px black;
}