@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;500;600&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Barlow Semi Condensed", sans-serif;
}

:root {
    --Purple500: hsl(263, 55%, 52%);
    --Purple300: hsl(264, 82%, 80%);
    --Purple50: hsl(260, 100%, 95%);
    --Grey100: hsl(214, 17%, 92%);
    --Grey200: hsl(0, 0%, 81%);
    --Grey400: hsl(224, 10%, 45%);
    --Grey500: hsl(217, 19%, 35%);
    --Darkblue: hsl(219, 29%, 14%);
    --White: hsl(0, 0%, 100%);
}

body {
    background-color: var(--Grey100);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
}


.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1110px;
    width: 100%;
}


.feedback {
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feedback .pfp {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feedback img {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.person { font-size: 13px; font-weight: 500; }
.verified { font-size: 11px; opacity: 0.5; }

.title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.comment {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.7;
}


.daniel { background-color: var(--Purple500); color: var(--White); }
.jonathan { background-color: var(--Grey500); color: var(--White); }
.jeanette { background-color: var(--White); color: var(--Grey500); }
.patrick { background-color: var(--Darkblue); color: var(--White); }
.kira { background-color: var(--White); color: var(--Grey500); }


@media (min-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto auto;
    }

    .daniel { 
        grid-column: 1 / 3;
        background: var(--Purple500) url('images/bg-pattern-quotation.svg') no-repeat top right 20%;
        background-size: 100px;
    }
    .jonathan { grid-column: 3; }
    .kira { grid-column: 4; grid-row: 1 / 3; }
    .jeanette { grid-column: 1; }
    .patrick { grid-column: 2 / 4; }
}

.attribution { margin-top: 2rem; font-size: 11px; text-align: center; }
.attribution a { color: var(--Purple500); text-decoration: none; font-weight: 600; }