:root{
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 18px;
    --Dark_cyan: hsl(185, 75%, 39%);
    --Very_dark_desaturated_blue: hsl(229, 23%, 23%);
    --Dark_grayish_blue: hsl(227, 10%, 46%);
    --Dark_gray: hsl(0, 0%, 59%);
}

*{
    margin: 0;
    padding: 0;
}

body{
    background: url(../images/bg-pattern-top.svg), url(../images/bg-pattern-bottom.svg), var(--Dark_cyan);
    background-repeat: no-repeat, no-repeat;
    background-position: right 55vw bottom 40vh, top 50vh left 50vw;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card__container{
    width: 335px;
    height: 360px;
    background: #fff;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    color: var(--Very_dark_desaturated_blue);
}

.card__header{
    background: url(../images/bg-pattern-card.svg);
    width: 100%;
    height: 20rem;
    border-radius: 1rem 1rem 0 0;
}

.card__body .profile{
    border-radius: 100%;
    border: solid #fff 5px;
}

.card__body{
    transform: translateY(-2.8rem);
    text-align: center;
}

.card__body p{
    font-weight: bold;
}

.card__body span:nth-child(1){
    font-weight: normal;
    color: var(--Dark_grayish_blue);
}

.card__body span:nth-child(3){
    font-size: .8rem;
    font-weight: normal;
    color: var(--Dark_grayish_blue);
}

.card__footer{
    font-weight: bold;
    text-align: center;
    border-top: solid var(--Dark_gray) 1px;
    display: flex;
    padding: 1rem 2.5rem;
    justify-content: space-between;
}

.card__footer p{
    font-size: .7rem;
    color: var(--Dark_gray);
    line-height: 2;
    font-weight: normal;
}



.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}
