
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
:root{
--Moderateviolet: hsl(263, 55%, 52%);
--Verydarkgrayishblue: hsl(217, 19%, 35%);
--Verydarkblackishblue: hsl(219, 29%, 14%);
--White: hsl(0, 0%, 100%);

--Lightgray: hsl(0, 0%, 81%);
--Lightgrayishblue: hsl(210, 46%, 95%);
}
html{
    Font-size: 13px
}
body{
    font-family: "Barlow Semi Condensed", serif;
    font-weight: 500;
    font-style: normal;
    background-color: var(--Lightgrayishblue);
}
main{
    padding: 8rem 3rem;
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
    
}

header{
display: flex;
column-gap: 2rem;
margin-bottom: 3rem;
}
header>img{
border-radius: 50%;
width: 50px;
height: 50px;
    }
.usrName>h1{
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: .5rem;
}
.usrName>p{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
}
article{
    padding: 4rem;
    border-radius: 1.5rem;
}
article>h1{
   font-size: 2.3rem;
   font-weight: 600;
   line-height: 1.3;
   margin-bottom: 2rem;
}
article>p{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
}
.Daniel{
background-color: var(--Moderateviolet);
color: var(--White);
opacity:0.9 ;
position: relative;
}
.Daniel p{
    color: var(--Lightgray);
    }
    .Daniel header img{
        border: 3px solid hsla(263, 75%, 74%, 0.918);
        }
.Jonathan{
    background-color: var(--Verydarkgrayishblue);
color: var(--White);
opacity:1 ;
}
.Jonathan p{
    color:  hsla(0, 0%, 100%, 0.5);
}

.Jeanette{
    background-color: var(--White);
color: var(--Verydarkgrayishblue);
opacity:1 ;
}
.Jeanette p{

color:hsla(217, 19%, 35%, 0.705);

}

.Patrick{
    background-color: var(--Verydarkblackishblue);
    opacity:0.9 ;
color: var(--White);
}
.Patrick p{
color: hsla(0, 0%, 100%, 0.712);

}

.Patrick img{
    border: 3px solid hsla(263, 75%, 74%, 0.918);
    
    }
.Kira{
    background-color: var(--White);
color: var(--Verydarkgrayishblue);
opacity:1 ;
}
.Kira p{

    color:hsla(217, 19%, 35%, 0.705);
}  
.image{
    position: absolute;
    border: 0;
    top: 0;
    right: 10%;
    width: 200px;
    height: 200px;
    z-index: -1;
}   
@media screen and (min-width:1000px) {
    html{
        Font-size: 8px
    }
body{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
    main{
        padding:0;
        height: 75%;
       width: 75%;
       margin:auto auto;
        display: grid;
       grid-template-columns: repeat(4, 1fr);
       grid-template-rows: repeat(2, 1fr);
       gap: 3rem;
     
    }
    .Daniel{
grid-area:1/1/2/3 ;
        }

        .Jonathan{
            grid-area:1/3/2/4 ;
        }
  
    
        .Jeanette{
            
            grid-area: 2/1/3/2;
            box-shadow: 1px 2px 16px  rgba(0, 0, 0, 0.11),  -1px 8px 20px  rgba(0, 0, 0, 0.2);
        }
        .Patrick{
            grid-area: 2/2/3/4;
            box-shadow: 1px 2px 16px  rgba(0, 0, 0, 0.11),  -1px 8px 20px  rgba(0, 0, 0, 0.2);
        }

        .Kira{
            grid-area: 1/4/3/5;
            box-shadow: 1px 2px 16px  rgba(0, 0, 0, 0.11),  -1px 8px 20px  rgba(0, 0, 0, 0.2);
        }
        .image{
            position: absolute;
            border: 0;
            top: 0;
            right: 10%;
            width: 150px;
            height: 150px;
            z-index: -1;
        } 

}