 *{
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 400;
    box-sizing: border-box;
 }
body{
    background-color:  hsl(185, 75%, 39%);
    display: flex;
    align-items: center;
    min-height: 700px;
    background-image: url(images/bg-pattern-top.svg),
    url(images/bg-pattern-bottom.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: right 50vw bottom 50vh, left 55vw top 40vh;
}

.container{
    margin: 0 auto;
    text-align: center; 
    justify-content: center;
    overflow: hidden;
}
.card{
    margin: 1rem;
    background-color: #fff;
    border-radius: 20px;
    max-width: 400px;
    overflow: hidden;
    
}
                /* content */
 
.content img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    border: 4px solid #fff;
    margin-top: -52px;
    border-radius: 50%;
}
.content h2{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: hsl(229, 23%, 23%);
  }
.content h2 span{
    font-weight: 400;
    color: hsl(227, 10%, 46%) ;
}
.content p{
    font-size: 10px;
    color:  hsl(227, 10%, 46%);
}
                /* footer */

.footer{
    border-top: 1px solid  hsla(227, 10%, 46%, 0.2);
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    margin-bottom: 10px;
}          
.footer p.number{
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: hsl(229, 23%, 23%);
}  
