body{
    background-color: blueviolet;
    margin-top: 2%;
    margin-bottom: 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: rgb(240, 111, 220);
    width: 250px;
    height: 310px;
    text-align: center;
border-radius: 15px;
box-shadow: 3px 3px rgb(208, 0, 255);
}
.card img{
    border-radius: 15px;
    width: 100%;
    height: 150px;
}
.card h2{
    font-size: 18px;
    color: rgba(79, 12, 142, 0.658);
}
.card p{
    font-size: 14px;
    color: rgb(0, 0, 0);
}
.botao{
    background-color: rgb(225, 132, 239);
    border-radius: 15px;
    padding: 10px;
    transition: 1s;
    width: 50%;
   display: block;
   margin: 0 auto;
}.botao:hover{
    background-color: azure;
    transform: scale(1.1);
}
a{
    text-decoration: none;
    color: black;
}
.nome{
    text-align: center;
    font-style: italic;
}