:root{
   --background-color: hsl(185, 75%, 39%);
   --text-color: hsl(227, 10%, 46%);
}

body{
    font-family: "Kumbh Sans";
    background-color: var(--background-color);
    height: 100vh;
    font-size: 18px;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.cartao{
    background-color: #fff;
    width: 330px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin: 20px;
    border-radius: 10px;
}

.cartao .cartao-info{
     display: flex;
     flex-direction: column;
     justify-content: space-around;
     align-items: center;
     gap: 10px;
}

hr{
    width: 100%;
}

.cartao .cartao-info img{
    border-radius: 50%;
    margin-top: 20px;
}

.cartao .perfil-social{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    padding-bottom: 30px;
    text-align: center;
} 

.cartao .cartao-info p,.perfil-social .info .numero{
    font-weight: 700;
}

.cartao .cartao-info .idade,
.cartao .cartao-info .cidade,
.perfil-social .info .text-info{
    color: var(--text-color);
}