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

:root {
    --dark_cyan: #19a2ae;
    --dark_blue: #2d3248;
    --gray_blue: #6a6f81;
    --dark_gray: #969696;
}

body {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    font-family: 'Kumbh Sans';
    background-color: var(--dark_cyan);
}

.pattern-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}


.pattern-top,
.pattern-bottom {
    position: absolute;
    width: auto;
    height: auto;
    object-fit: cover;
}

.pattern-top {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.pattern-bottom {
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
}


main {
    display: flex;
    flex-direction: column;
    width: 400px;
    background-color: white;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.pattern {
    width: 100%;
    border-radius: 20px 20px 0px 0px ;
}

.profile-pic {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    border: 4px solid white;
    border-radius: 50%;
    background-color: white;
}

section {
    margin-top:  30px;
}

.profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 40px
}

.profile div {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

h1 {
    font-size: 18pt;
    color: var(--dark_blue);
    margin: 0;
}

h2 {
    font-size: 15pt;
    font-weight: 300;
    color: var(--gray_blue);
    margin: 0;
}

h3 {
    font-size: 18pt;
    color: var(--dark_blue);
    margin: 0;
}

h4 {
    font-size: 10pt;
    font-weight: normal;
    color: var(--gray_blue);
    margin: 0;
}

p {
    color: var(--gray_blue);
    margin: 0;
}

hr {
    margin: 0;
    border: none;
    height: 0.5px;
    background-color: var(--dark_gray);
}

.stats {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    margin: 20px
}

.stats div {
    display: flex;
    flex-direction: column;
    align-items: center;
}
