:root{
    --Dark-cyan: hsl(185, 75%, 39%);
    --Very-dark-desaturated-blue: hsl(229, 23%, 23%);
    --Dark-grayish-blue: hsl(227, 10%, 46%);
    --white: hsl(0, 0%, 100%);
    /*====== Neutral =======*/
    --Dark-gray: hsl(0, 0%, 59%);
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Kumbh Sans', sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    background:var(--Dark-cyan);
    background-image: url(../images/bg-pattern-top.svg),url(../images/bg-pattern-bottom.svg);
    background-repeat:no-repeat, no-repeat ;
    background-position: right 48vw bottom 40vh, left 45vw top 44vh  ;
}  
.container{
    background: var(--white);
    border-radius: 10px;
    height: 100%;
    width: 100%;
    max-height: 390px;
    max-width: 350px;
   
}

.logo img{
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
}

.profile {
    padding: 0 ;
   
}
.logo img:first-child{
    position: relative;
    
}

    
.profile img:first-child{
    position: absolute;
    width:105px ;
    height: 105px;
    border-radius: 50%;
    margin-left: 120px;
    margin-top: -50px;
    border: 5px solid white;
}

.profile h1{
    text-align: center;
    padding-top: 20%;
    color: var(--Very-dark-desaturated-blue);
    font-size: 22px;
    font-weight: 900;
    
}
h1 span{
    color: var(--Dark-grayish-blue);
    padding-left: 5px;
}
.profile p{
    text-align: center;
    padding-top:20px;
    color: var(--Dark-grayish-blue);
    font-weight: 700;
}
.A-line{
    margin-top: 30px;
}
.line{
    width: 100%;
    height:0.07px;
    background:var(--Dark-gray);
}
.stats{
    display: flex;
    justify-content: space-around;
    align-items: center;
    
}
.stat{
    font-weight: 700;
    padding-top: 15px;
    
}
.number{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--Very-dark-desaturated-blue);

}
.label{
    font-weight: 400;
    font-size: 14px;
    color: var(--Dark-grayish-blue);
}
.copyright {
    margin-top: 20px;
}
.copyright p {
    color: var( --Very-dark-desaturated-blue);
}
.copyright a {
    color: var( --Dark-grayish-blue);
    text-decoration: none;
}
/* ========================================= */
/*! ================@media (max-width:767)========================= */
/* ========================================= */
@media (max-width:767) {
    .container{
        height: 100%;
        width: 100%;
        max-height: 390px;
        max-width: 200px;
        
    }

}
