*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    background-color: #8D311A;
}

body::-webkit-scrollbar {
    display: none;
}

html,
body {
    overflow-x: hidden;
}

.modal-content {
    background-color: #8D311A;
    border-radius: 2rem;
    color: #FFF8D9;
    text-align: start;
}

.modal-title {
    font-family: "Urbanist", serif;
}

.modal-body {
    font-family: "Outfit", sans-serif;
    text-align: start;
}

.card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-body {
    flex-grow: 1;
}

.card-img-container {
    width: 100%;
    height: 25rem;
    overflow: hidden;
    position: relative;
    border-radius: 1rem 1rem 0 0;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    nav {
        display: grid;
        grid-template-rows: auto auto;
    }

    .buttons-container {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .logo-ong {
        text-align: center;
    }

    .botbot,
    .bottop {
        font-size: 1.5rem;
    }

    .painel-orange img {
        margin-top: -1rem;
    }
}