@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Rubik+Spray+Paint&display=swap');
body{
    background-color: #e9e9e9;
    margin: 0;
}

.titulo{
    font-family: "Rubik Spray Paint", system-ui;
    font-weight: 400;
    color: #2f2f2f;
    text-align: center;
}

.header-bk{
    padding-top: 10px;
}

.catalogo-conteudo{
    width: 1200px;
    /* height: 150px; */
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 10px;
}


.catalogo-individual{
    width: 200px;
    height: 150px;
    background-color: rgb(201, 201, 201);
    padding: 10px;
    border-radius: 5px;
    display: grid;
    grid-template-rows: 1fr 25px;
    position: relative;
}

.catalogo-individual a{
    content: "";
    width: 220px;
    height: 170px;
    position: absolute;
    top: 0;
    left: 0;
}

.catalogo-individual img{
    width: 100%;
    border-radius: 10px;
    align-self: center;
}
.catalogo-individual p{
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    margin: 0;
}