@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght,YOPQ@100..900,40..300&display=swap');
:root{
    /* COLORS */
    /* primary colors */
    --dark-cyan: hsl(185, 75%, 39%);
    --very-dark-desaturated-blue: hsl(229, 23%, 23%);
    --dark-grayish-blue: hsl(227, 10%, 46%);
    /* neutral color */
    --dark-gray: hsl(0, 0%, 59%);

    /* FONT */
    --font-size: 18px;
    --main-font: "Kumbh Sans", sans-serif;
}

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

main{
    width: 100vw;
    min-height: 100vh;
    background-color: var(--dark-cyan);
    font-family: var(--main-font);
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}
main::before{
    content: "";
    width: 100vw;
    height: 100vw;
    position: absolute;
    top: 0;
    left: 0;

    transform: translate(-50%, -55%);

    background-image: url(images/bg-pattern-top.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
main::after{
    content: "";
    width: 80vw;
    height: 80vw;
    position: absolute;
    bottom: 0;
    right: 0;

    transform: translate(30%, 65%);

    background-image: url(images/bg-pattern-bottom.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.card{
    background-color: white;
    text-align: center;
    border-radius: 10px;
    z-index: 5;
    width: 300px;
}
.card > .col-1{
    height: 120px;
    background-image: url(images/bg-pattern-card.svg);
    border-radius: 10px 10px 0 0;
}
.card > .col-2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.card > .col-2 > img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    display: inline-block;
    transform: translateY(-50%);
    /* margin: 0 auto; */
}
.card > .col-2 > h3{
    font-size: 20px;
    margin-top: -20px;
    margin-bottom: 5px;
}
.card > .col-2 > h3 > span{
    display: inline-block;
    font-weight: 300;
    color: var(--dark-gray);
}
.card > .col-2 > p{
    font-size: 14px;
    font-weight: 300;
    color: var(--dark-gray);
    margin-bottom: 30px;
}
.card > .col-2 > .stats{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    border-top: 1px solid rgba(128, 128, 128, 0.138);
    padding: 15px 25px;
    width: 100%;
}
.card > .col-2 > .stats > li{
    display: flex;
    flex-direction: column;
}
.card > .col-2 > .stats > li > b{
    font-size: 18px;
    color: black;
}
.card > .col-2 > .stats > li > span{
    font-size: 12px;
    font-weight: 200;
    color: var(--dark-gray);
}