body{
    background-color: rgb(166, 162, 162);
    margin-bottom: 2%;
    margin-top: 2%;
    margin-right: 4%;
    margin-left: 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(69, 69, 70);
    width: 250px;
    min-height: 310px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 3px 3px rgb(32, 30, 30);
}
.card img{
    border-radius: 15px;
    height: 200px;
    width: 100%;
}
.card h2{
    font-size: 18px;
    color: black;
}
.card p{
    font-size: 16px;
    color: black;
}
.botao{
    background-color: rgb(71, 70, 70);
    border-radius: 15px;
    padding: 10px;
    transition: 1s;
    width: 50%;
    margin:0 auto;
    display: block;
}
.botao:hover{
    background-color: rgb(240, 233, 233);
    transform: scale(1.1);
}
a{
    text-decoration: none;
    color: rgb(6, 6, 6);
}
.nome{
    text-align: right;
    font-style: italic;
}