=================================================================

style.css

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

main{
    display: flex;
    justify-content: center;
}

section{
    display: grid;
    grid-template-columns: 250px 250px 250px;
    background-color: #f2f2f2;
}

header{
    display: flex;
    /* alinhar horizontalmente */
    justify-content: space-around;
    /* Alinhar verticamente */
    align-items: center;
    color: white;
    background-color: #1F2A44;
    /* para aumentar a gordura */
    padding: 20px;
    z-index: 1;
}

button{
    color: white;
    background-color: #044FFF00;
    padding: 5px;
    border-radius: 3px;
}
/* Façam o efeito de transição de estilos do botão */
button:hover{
    /* Troque a cor de fundo com a cor da fonte e vice-versa */
    background-color: white;
    color: #1F2A44;
    transition: ease 0.5s;

}
/* aplico um tempo de transição --> transition */

.card img{
    width: 250px;
}
.card{
    font-family: 'Segoe UI', Tahoma, Geneva;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 8px;
    background-color: white;
    border-radius: 15px;
    z-index: 0;
    
}
/* efeito ao passar o mouse em cima */
.card:hover{
    transition: 0.8s;
    transform: translateY(-20px);
}
.card button{
    background-color: rgb(10, 59, 164);
    width: 150px;


}