@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,700;0,800;1,300;1,500&family=Roboto+Mono:wght@300;400;500&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;  
    font-family: 'Roboto Mono', monospace;
  
}

.main-grid{
    width: 100%;
}

.card{
    max-width: 21rem;
    min-width: 16rem;
    min-height: 30rem;
    margin: 10px;
    outline: none;
    border: none;
    background-color: rgba(194, 194, 194, 0.849);
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
}

.card{
    color: black;
}
.card h1  {
    font-size: 18px;
    font-weight: 500;
}

.card h2{
    font-size: 14px;
    font-weight: 400;
    text-align: left;
}

.card p{
    font-size: 14px;
    font-weight: 400;
    text-align: left;
}

.card > img {
    border-radius: 12px;
    max-width:100%;
    max-height: 100%;
    padding: 10px 10px 0px;
}

.adicionarItem{
    position: fixed;
    bottom:10px;
    right: 10px;
    z-index: 999;
    font-size: 900;
    font-weight: 800;
}





