#sobre {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #1d1d1d;
    border-radius: 30px;
    padding: 3%;
}

#sobre h1, #sobre h2, .descricao-sobre{
    color: whitesmoke;
}

#sobre h2 {
    font-size: 1.5rem;
}

#sobre p {
    font-size: 1.2rem;
}

#sobre span {
    color: rgb(20, 160, 20);
}

#carouselExampleDark {
    max-width: 700px;
    margin-right: 10px;
    border-radius: 20px;
}

#carouselExampleDark img {
    border-radius: 20px;
}

#sobre .descricao-sobre {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: 0 4% 6% 0;
    justify-content: space-between;
}

#img-sobre {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#img-sobre h1{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}


@media screen and (max-width: 750px) {

    #sobre, .descricao-sobre {
        display: flex;
        align-items: center;
        flex-direction: column;
        padding-right: 0;
    }

    #sobre .descricao-sobre {
        justify-content: space-evenly;
        padding: 0 4% 0 0;
    }

    #sobre p {
        font-size: 1rem;
        text-align: center;
    }

    #carouselExampleInterval {
        max-height: 50px;
        max-width: 200px;
    }

    #img-sobre {
        padding: 0 10% 4%;
    }

    #img-sobre h1{
        font-size: 1.rem;
    }

}