* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;

}

:root {
    --blue-600: hsl(185, 75%, 39%);
    --navy-950: hsl(229, 23%, 23%);
    --gray-500: hsl(227, 10%, 46%);
    --gray-100: hsl(225, 10%, 92%);
}



.kumbh-sans {
    font-family: "Kumbh Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "YOPQ" 300;
}

.regular {
    font-weight: 400;
}

.bold {
    font-weight: 700;
}

html {
    font-size: 62.5%;
}

body {
    height: 100dvh;
    width: 75dvw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: var(--blue-600);
    background-image: url("images/bg-pattern-top.svg"), url("images/bg-pattern-bottom.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: 0% -400px, 100% 400px;
    background-size: contain, contain;
    background-attachment: fixed;

}

.card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.card-container {
    overflow: hidden;
    display: flex;
    background-color: white;
    border-radius: 10px;
}

.background-image {
    width: 100%;
    display: block;
}

.profile-picture-container {
    display: flex;
    justify-content: center;
    margin-top: -13%;
    margin-bottom: 1rem;
}

.profile-picture {
    display: block;
    border-radius: 50%;
    outline: 4px solid white;
}

.user-main-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .8rem;
    padding: 1.5rem 0 2rem;
}

.username {
    color: var(--navy-950);
}

.age {
    color: var(--gray-500);
    margin-left: .5rem;
}

.city {
    color: var(--gray-500);
    font-size: 1.6rem;
}

.user-stats {
    border-top: 2px solid var(--gray-100);
    display: flex;
    justify-content: space-around;
    padding: 2rem 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
}

.number {
    color: var(--blue-600);
    font-size: 2rem;
    flex: 1;
}

.label {
    color: var(--navy-950);
    font-size: 1rem;
    letter-spacing: 2px;
}

footer {
    margin-top: auto;
}

.social-media {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

ion-icon {
    color: var(--gray-100);
    border: 2px solid;
    border-radius: 50%;
    padding: .5rem;
    margin-bottom: .5rem;
    font-size: 2.2rem;
    transition: all .3s ease-in;
}

ion-icon:hover {
    color: var(--gray-500);
}

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

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

.attribution a:hover {
    color: black;
    text-decoration: none;
}

/* max-width: 24rem; */