body{
    background-color: rgb(145, 121, 174);
    margin-left: 4%;
    margin-bottom: 2%;
}
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: blueviolet;
width: 270px;
height: 310px;
text-align: center;
border-radius: 15px;
box-shadow: 3px 3px rebeccapurple;
transition: 1s;

}
.card img{
    border-radius: 15px;
    height: 40%;
    width: 90%;
}
.card h2{
    font-size: 18px;
    color: bisque;
}
.card p{
    font-size: 14px;
    color: aliceblue;
}
.botao{
    background-color: darkmagenta;
    border-radius: 15px;
    padding: 10px;
    transition: 1s;
    width: 50%;
    margin: 0 auto;
}
.botao:hover{
    background-color: black;
    transform: scale(1.1);
}
a{
    text-decoration: none;
    color: aquamarine;
}
.nome{
    text-align: right;
    font-style: italic;
}