body{
    background-color: rgb(255, 255, 255);
    margin-top: 2%;
    margin-left: 4%;
    margin-right: 4%;
}
h1{
    text-align: center;
}
.cards{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0 auto;
    width: 60%;
}
.card {
    background-color: beige;
    width: 250px;
    height: 310px;
    box-shadow: 3px 3px rgb(159, 134, 134);
    text-align: center;
}.card img{
    border-radius: 15px;
    height: 150px;
    width: 100%;
}
.card h2{
    font-size: 18px;
    color: black;
}
.card p{
    font-size: 14px;
    color: black;
}
.botao{
    background-color: rgb(254, 196, 121);
    box-shadow: 15px;
    padding: 10px;
    transition: 1s;
    width: 50%;
    text-align: center;
    margin: 0 auto;
    display: block;

}
.botao:hover{
    background-color: rgb(183, 162, 60);
    transform: scale(1.1);
}
a{
    text-decoration: none;
    color: rgb(0, 0, 0);
}
.nome{
    text-align: right;
    font-style: italic;
}