@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kumbh+Sans:wght@100..900&family=Lexend+Deca:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Overpass:ital,wght@0,100..900;1,100..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --Dark-cyan: hsl(185, 75%, 39%);
    --Very-dark-desaturated-blue: hsl(229, 23%, 23%);
    --Dark-grayish-blue: hsl(227, 10%, 46%);
    --Dark-gray: hsl(0, 0%, 59%);
}

* {
    margin: 0%;
    padding: 0%;
}

body {
    width: 100%;
    height: 100vh;
    background-color: var(--Dark-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Kumbh Sans", serif;
    position: relative;

}

.bg-pattern-bottom,
.bg-pattern-top {
    position: fixed;
    z-index: -10;
}

.bg-pattern-top {
    width: 630px;
    top: -180px;
    left: -80px;
}

.bg-pattern-bottom {
    width: 650px;
    bottom: -300px;
    right: -40px;
}

.wrapper {
    background-color: #fff;
    width: 350px;
    height: 380px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.wrapper::before {
    position: absolute;
    top: 0;
    content: '';
    width: 100%;
    height: 40%;
    background-image: url('images/bg-pattern-card.svg');
}

.wrapper img {
    position: absolute;
    top: 6rem;
    left: 7.6rem;
    border-radius: 50%;
    border: 5px solid #fff;
}

.profile-details {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid var(--Dark-gray);
}

.profile-details h1 {
    font-size: 1.2rem;
}

.profile-details h1 span {
    font-weight: 400;
    color: var(--Dark-grayish-blue);
}

.profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid;
    border-bottom-color: rgba(0, 0, 0, 0.201);
    padding: 1.2rem 0;
}

.social-insights {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 1.4rem 0;
    text-align: center;
}