@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kumbh Sans', sans-serif;
    height: 100vh;
    background-color: #19a2ae;
    background-image: url("images/bg-pattern-top.svg"), url("images/bg-pattern-bottom.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top -200px left -200px,  bottom -200px right -200px;
}

.main-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    background-color: white;
    max-width: 360px;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.top-bg img{
    width: 100%;
}

.profile-info {
    margin-top: 4em;
}
.profile-info img {
    border-radius: 50%;
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
}

h1 {
    font-size: 1.5em;
}

.age {
    color: #6a6f81ff;
    font-weight: normal;
}

.location {
    color: #6a6f81ff;
    font-weight: normal;
    margin: 1em 0 1.5em;
}

.stats {
    padding: 2em;
    margin-top: 0.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

.stat strong {
    font-size: 1.5em;
}

.stat span {
    font-size: 1em;
    color: #6a6f81ff;
}
