*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Barlow Semi Condensed", sans-serif;
    background-color:hsl(0, 0%, 81%);
}
.container{
    margin: 5rem 2rem;
    max-width: 2000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
/* Common CSS */
.testimonial-1,.testimonial-2,.testimonial-3,.testimonial-4,.testimonial-5{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    margin: 1rem 0;
    border-radius: 0.7rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.about{
    display: flex;
    margin: 1rem 0;
}
.name-tag{
    width: 100%;
    font-weight: 500;
    margin: 1rem;   
    margin-top: 0.4rem; 
}
.about img{
    height: 3rem;
    border-radius: 50%;
    margin-right: 1rem;
}
.text{
    font-size: 1.2rem;
    line-height: 1.25;
}
.text .bold{
    line-height: 1.2;
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;   
}
.tag{
    font-weight: 200;
}

/* Element Specific CSS */

.testimonial-1{
    background-color: hsl(263, 55%, 52%);
    color: hsl(260, 100%, 95%);
}
.testimonial-1 .about img{
    border: 0.2rem solid hsl(264, 82%, 80%);
}
.testimonial-1 .quotation-pattern {
  display: none;
}

.testimonial-2{
    background-color: hsl(217, 19%, 35%);
    color: hsl(214, 17%, 92%);
}
.testimonial-2 .about img{
    border: 0.2rem solid hsl(217, 19%, 50%);
}
.testimonial-3{
    background-color: hsl(0, 0%, 100%);
    color: hsl(217, 19%, 35%);
}
.testimonial-3 .about img{
    border: 0.2rem solid hsl(217, 19%, 50%);
}
.testimonial-4{
    background-color: hsl(219, 29%, 14%);
    color: hsl(0, 0%, 81%);
}
.testimonial-4 .about img{
    border: 0.2rem solid hsl(263, 55%, 52%);
}
.testimonial-5{
    background-color: hsl(0, 0%, 100%);
    color: hsl(217, 19%, 35%);
}   
.testimonial-5 .about img{
    border: 0.2rem solid hsl(217, 19%, 50%);
}

.attribution{
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: hsl(217, 19%, 35%);
    margin-top: 1rem;
    font-weight: 200;
}
.attribution a{
    color: hsl(217, 19%, 35%);
    text-decoration: none;
    font-weight: 500;

}

@media (min-width: 768px){
    .container{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    .testimonial-1,.testimonial-2,.testimonial-3,.testimonial-4,.testimonial-5{
        width: 100%;
        height: 100%;
    }
    .testimonial-1 .quotation-pattern {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    display: block;
    } 
    .testimonial-1{
        position: relative;
        grid-column: 1 / 3;;
    }
    .testimonial-2{
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }
    .testimonial-3{
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    .testimonial-4{
        grid-column: 2 / 4;
        grid-row: 2 / 3;
    }
    .testimonial-5{
        grid-column: 4 / 5;
        grid-row: 1 / 3;
    }
}