@import url('coopaiterbase.css');

.corpo h1 {
    font-size: 40px;
    text-align: center;
    margin: 20px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    justify-content: space-around;
    border-radius: 20px;
}

.item-container {
    display: flex;
    flex-basis: 400px;
    margin: 40px 2%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    flex-direction: column;
}

.claro {
    background-color: #f7dda8;;
}

.imagem-produto {
    height: 40%;
    overflow: hidden;
}

.imagem-produto img {
    width: 100%;
    object-fit: cover;
}

.corpo-produto {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.corpo-produto h2 {
    margin-bottom: 20px;
}

.corpo-produto p {
    text-align: justify;
    text-indent: 30px;
}

.botoes {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    margin: 0px auto 60px;
}

.botao_cadastro {
    padding: 5px;
    color: white;
    margin: 0px;
    padding: 15px;
    border-radius: 10px;
    background-color: rgb(42, 113, 220);
    text-decoration: none;
}

.botao_excluir {
    padding: 5px;
    color: white;
    margin: 0px;
    padding: 15px;
    border-radius: 10px;
    background-color: rgb(220, 42, 42);
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    header {
        display: flex;
        flex-direction: row;
        justify-content: center;

    }
}