@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap');
body {
    min-height: 100vh;
    background: url(../img/bg-pattern-top.svg) -225px -500px no-repeat, url(../img/bg-pattern-bottom.svg) 775px 425px no-repeat;
    background-color: hsl(185, 75%, 39%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "kumph-sans";
    font-weight: 400;
}
.profile-card {
    width: 350px;
    height: 400px;
    border-radius: 15px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.profile-card::before {
    content: "";
    display: block;
    width: 100%;
    height: 140px;
    background: url(../img/bg-pattern-card.svg);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px 15px 0 0;
}
.profile-picture{
    border-radius: 50%;
    border: solid 2px white;
    z-index: 1;
    margin-top: 90px;
}
.name {
    font-size: 18px;
    font-weight: 700;
}
.age,
.city,
.stats div div:last-child {
    color: hsla(0, 0%, 0%, 0.5);
}
.stats {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    border-top: solid 1px hsla(0, 0%, 0%, .1);
    padding: 25px 0;
}
.stats div div:first-child {
    font-size: 18px;
    font-weight: 700;
}
.stats div div:last-child {
    font-size: 14px;
    margin-top: 8px;
}