@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');

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

body{
font-family: 'kumbh-sans', sans-serif; background-color: hsl(185, 75%, 39%);
display: flex;
align-items: center;
min-height: 100vh;
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 80vh top 50vh;
}

.container{
margin:0 auto;
text-align: center;
}

.wrapper {
    max-width: 420 px;
    background-color: #FFF;
    border-radius: 15px;
    overflow: hidden;
    margin:1rem;
}

.content img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #FFF;
    margin-top: -52px;
    margin-bottom: 20px;

}

.content h2 {
    color: hsl(229, 23%, 23%);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.content h2 span {
    color: hsl(227, 10%, 46%);
    font-weight: 400;
}

.content p {
    color: hsl(227, 10%, 46%);
    font-size: 13px;
}

.footer {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid hsl(227, 10%, 46%, 0.2);
    padding: 30px 50px;
    margin-top: 20px;
}
.footer p.num {
    font: size 18px; 
    color: hsl(229, 23%, 23%);
    font-weight: 700;
    margin-bottom: 5px;

}













