* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #F5F5F5;
}

#geral {
    display: flex;
    gap: 35px;
}

p {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 1em;
    margin-top: -55px;
    margin-bottom: 10px;
}

h2 {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    align-items: center;
    font-size: 2em;
    margin-top: -90px;
}

.cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    width: 280px;
    height: 240px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.363);
    background-color: white;
    gap: 5px;
}

.divImg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 250px;
}

img {
    height: 100px;
    border-radius: 100%;
}