@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600&family=Josefin+Sans:wght@300;400;600&display=swap');

: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%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--LightGrayishBlue);
}

body {
    background-color: var(--LightGrayishBlue);
    font-family: "Barlow Semi Condensed", sans-serif;
}

.container {
    padding: 35px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card {
    margin: 15px;
    padding: 35px;
    border-radius: 10px;
}

.identity {
    display: flex;
    flex-direction: row;
    justify-content: start;
    margin-bottom: 15px;
    align-items: center;
}

h2 {
    margin-bottom: 15px;
}

span {
    opacity: 50%;
}

p {
    opacity: 50%;
}

.testi-1 {
    background-color: var(--Moderateviolet);
    color: white;
    background-image: url("./images/bg-pattern-quotation.svg");
    background-repeat: no-repeat;
    background-position: top right 70px;
}

.testi-2 {
    background-color: var(--VeryDarkGrayishBlue);
    color: white;
}

.testi-3 {
    background-color: var(--White);
}

.testi-4 {
    background-color: var(--VeryDarkBlackishBlue);
    color: white;
}

.testi-5 {
    background-color: var(--White);
}

@media screen and (min-width: 1200px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }

    .container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas:
            "a a b e"
            "c d d e";
        max-width: 1400px;
        margin: auto;
    }

    .testi-1 {
        grid-area: a;
    }

    .testi-2 {
        grid-area: b;
    }

    .testi-3 {
        grid-area: c;
    }

    .testi-4 {
        grid-area: d;
    }

    .testi-5 {
        grid-area: e;
    }
}