@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

: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%);
}

body{
    height: 100vh;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--Dark-cyan);
    background-image: url(images/bg-pattern-top.svg),url(images/bg-pattern-bottom.svg);
    background-repeat: no-repeat,no-repeat;
    background-position: right 48vw bottom 40vh,
    left 45vw top 44vh;

}

section{
    width: 350px;
    background-image:url(images/bg-pattern-card.svg);
    background-position:top;
    background-repeat: no-repeat;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    z-index: 10;
    position: absolute;
    
}
.profile{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 113px;
}
.profile .image img{
    width: 54px;
    border-radius: 50%;
    margin: 0 41%;
    border: 4px solid white;
}
.status{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
    padding: 10px 0;
}
.status h1 span{
    font-weight: lighter;
    color: var(--Dark-gray);
}
.status h1{
    font-size: 1.1rem;
}
.status p{
    color: var(--Dark-gray);
}

.viewers{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 20px;
    line-height: 1.5;
}

.viewers p{
    color: var(--Dark-gray);
}

.viewer{
    display: flex;
    flex-direction: column;
    align-items: center;
}