.background {
    background-color: hsl(185, 75%, 39%);
    background-image: url("/images/bg-pattern-top.svg");
    background-size: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Kumbh Sans", sans-serif;
}

.card {
    width: 400px;
    height: auto;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
}

.card-header {
    background-image: url(/images/bg-pattern-card.svg);
    height: 200px;
    position: relative;
}

.icon-wrapper {
    position: absolute;
    overflow: hidden;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
}

.icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.card-body {
    padding-top: 100px;
    padding-bottom: 40px;
    background-color: white;
}

.user-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.user-age {
    font-weight: 400;
    color: hsl(0, 0%, 59%);
    margin-left: 6px;
}

.user-location {
    font-size: 14px;
    color: hsl(0, 0%, 59%);
    margin-top: 4px;
}

.card-footer {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid hsl(0, 0%, 59%);
    padding: 20px 0;
    background-color: white;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-weight: 700;
    font-size: 16px;
}

.stat-label {
    font-size: 12px;
    color: hsl(0, 0%, 59%);
}