@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    width: 100%;
}
header{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 75px;
    margin-bottom: 100px;
}
header img{
    max-height: auto;
    max-width: 100px;
}
.bem-vindo{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 70px;
}
.bem-vindo h1{
    font-family: "Poppins";
    font-weight: 600;
    font-size: 26px;
}
.bem-vindo h2{
    font-family: "Poppins";
    font-weight: 400;
    font-size: 14px;
    color: #7E8392;
}
.cards{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 400px;
}
.cards a{
    text-decoration: none;
}
.card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 160px;
    border: 1px solid #7E8392;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.5s;
    transform: translateX(0) scale(1);
}
.card:hover{
    transition: transform 1s;
    transform: translateX(0) scale(1.2);
}
.card button{
    margin-top: 15px;
    border: none;
    background-color: unset;
    cursor: pointer;
    font-family: "Poppins";
    font-weight: 600;
}