*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --moderateViolet: hsl(263, 55%, 52%);
    --darkGrayishBlue: hsl(217, 19%, 35%);
    --darkBlackishBlue: hsl(219, 29%, 14%);
    --white: hsl(0, 0%, 100%);
    --lightGray: hsl(0, 0%, 81%);
    --grayishBlue: hsl(210, 46%, 95%);
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Barlow Semi Condensed", serif;
    background-color: var(--grayishBlue);
}
main{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 50px 0 50px 0;
    width: 72%;
}
main > div{
    width: 100%; 
}
.conOne{
    grid-row: 1;
    grid-column: 1/3;
    background: var(--moderateViolet);
}
.conTwo{
    grid-row: 1;
    background: var(--darkGrayishBlue);
}
.conThree{
    grid-row: 1/3;
    background: var(--white);
}
.conFour{
    background: var(--white);
}
.conFive{
    grid-column: 2/4;
    background: var(--darkBlackishBlue);
}
.conOne,
.conTwo,
.conThree,
.conFour,
.conFive{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px;
    color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.conOne > div, p,
.conTwo > div, p,
.conThree > div, p,
.conFour > div, p,
.conFive > div, p{
    z-index: 1;
    background: transparent;
}
.conThree > div.n, p.n
.conFour > div.n, p.n{
    color: var(--darkGrayishBlue)
}
.conOne svg{
    position: absolute;
    right: 16%;
    top: 0px
}
.conOne .nameImage,
.conTwo .nameImage,
.conThree .nameImage,
.conFour .nameImage,
.conFive .nameImage{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left:5px;
    width: 100%;
}
.conOne .nameImage > div,
.conTwo .nameImage > div,
.conThree .nameImage > div,
.conFour .nameImage > div,
.conFive .nameImage > div{
    margin-right: 5px;
}
.conOne .nameImage .myImg,
.conTwo .nameImage .myImg,
.conThree .nameImage .myImg,
.conFour .nameImage .myImg,
.conFive .nameImage .myImg{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 50%;
}
.conOne .nameImage .myImg::before,
.conTwo .nameImage .myImg::before,
.conThree .nameImage .myImg::before,
.conFour .nameImage .myImg::before,
.conFive .nameImage .myImg::before{
    content: ' ';
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    opacity: 0.4;
    z-index: 1;
}
.conOne .nameImage .myImg img,
.conTwo .nameImage .myImg img,
.conThree .nameImage .myImg img,
.conFour .nameImage .myImg img,
.conFive .nameImage .myImg img{
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.conOne .nameImage .profile,
.conTwo .nameImage .profile,
.conThree .nameImage .profile,
.conFour .nameImage .profile,
.conFive .nameImage .profile{
    padding: 10px;
}
.conOne .nameImage .profile .profileTwo,
.conTwo .nameImage .profile .profileTwo,
.conThree .nameImage .profile .profileTwo,
.conFour .nameImage .profile .profileTwo,
.conFive .nameImage .profile .profileTwo{
    opacity: calc(50%);
    font-size: 13px;
}
.conOne .nameImage .profile .profileOne,
.conTwo .nameImage .profile .profileOne,
.conThree .nameImage .profile .profileOne,
.conFour .nameImage .profile .profileOne,
.conFive .nameImage .profile .profileOne{
    font-size: 15px;
}
.conOne .commentOne,
.conTwo .commentOne,
.conThree .commentOne,
.conFour .commentOne,
.conFive .commentOne{
    padding: 10px;
    width: 100%;
    font-weight: 600;
}
.conOne .commentTwo,
.conTwo .commentTwo,
.conThree .commentTwo,
.conFour .commentTwo,
.conFive .commentTwo{
    padding: 10px;
    width: 100%;
    font-size: 13px;
    opacity:calc(70%);
}
@media (max-width: 800px) {
    .conOne svg{
        position: absolute;
        right: 10%;
        top: 0px
    }
    .conOne{
        grid-row: 1;
        grid-column: 1/3;
    }
    .conTwo{
        grid-row: 1;
        grid-column: 3/5 ;
    }
    .conThree{
        grid-row: 2;
        grid-column: 1/5;
    }
    .conFour{
        grid-row: 3;
    }
    .conFive{
        grid-row: 3;
        grid-column: 2/5;
    }
}
@media (max-width: 550px) {
    main{
        margin: 40px 20px 40px 20px;
        width: 100%;
        gap: 25px;
    }
    .conOne svg{
        position: absolute;
        right: 8%;
        top: 0px
    }
    .conOne{
        grid-row: 1;
        grid-column: 1/5;
    }
    .conTwo{
        grid-row: 2;
        grid-column: 1/5 ;
    }
    .conFour{
        grid-row: 3;
        grid-column: 1/5;
    }
    .conFive{
        grid-row: 4;
        grid-column: 1/5;
    }
    .conThree{
        grid-row: 5;
        grid-column: 1/5;
    }
}
