.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 25%;
    padding-right: 25%;
}



.rotulagem {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 20px;
}

.rotulagem p {
    text-indent: 30px;
}

.rotulagem h2 {
    margin-bottom: 10px;
}

.nova-rotulagem {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 20px;
}

.nova-rotulagem p {
    text-indent: 30px;
}

.content {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;

}

.content img {
    width: 25%;
    height: 25%;
    order: 1;
}

.content-novos {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;

}
.content-novos img {
    width: 50%;
    height: 50%;
    order: 0;
    padding-right: 10px;
}


.content p {
    padding-left: 10px;
}

.aditivo {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 20px;
}

.artigos {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 20px;
}

.artigos>div {
    background-color: #a1c643;
    text-align: center;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: solid 1px black;
}

@media (max-width: 768px) {
    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;

    }
    .content img{
        width: 75%;
        height: 75%;
    
    }

    .artigos {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .artigos>div {
        width: 100%;
    }
}