:root {
    --black: hsl(0, 0%, 12%);
    --Moderate-violet: hsl(263, 55%, 52%);
    --Light-moderate-violet: hsl(263, 71%, 74%);
    --Very-dark-grayish-blue: hsl(217, 19%, 35%);
    --box-shabow: hsla(216, 28%, 71%, 0.237);
    --small-text: hsla(216, 63%, 81%, 0.878);
    --Very-dark-blackish-blue: hsl(219, 29%, 14%);
    --White: hsl(0, 0%, 100%);
    --Light-gray: hwb(0 81% 19%);
    --quote: hwb(293 91% 0%);
    --Light-grayish-blue: hsl(210, 46%, 95%);
}

body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: var(--Light-grayish-blue);
    font-family: "Barlow Semi Condensed";
    font-size: 0.85rem;
}


.container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: auto 26%;
}



.fl-1 {
    display: flex;      
}

.card {
    padding: 1.5rem;
    margin: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.quotation {
}

img {
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
}

h3 {
    opacity: 90%;
    margin: 0;
}

h5 {
    opacity: 50%;
    margin: 0;
}

.top-p {
    display: flex;
    justify-items: center;
    align-items: center;
}

.c-1 {
    color: var(--White);
    background: url('images\bg-pattern-quotation.svg') no-repeat ;
    background-color: var(--Moderate-violet);
    
}

.dan {
    border: 3px solid var(--Light-moderate-violet);
}

.pat {
    border: 3px solid var(--Moderate-violet);
}

.c-2 {
    background-color: var(--Very-dark-grayish-blue);
    color: var(--White);
}

.c-3, .c-5 {
    background-color: var(--White);
    box-shadow: 5rem 0rem 8rem 20px var(--box-shabow);
}

.c-4 {
    background-color: var(--Very-dark-blackish-blue);
    color: var(--White);
}

.c-5 {
    background-color: var(--White);
    box-shadow: 5rem 0rem 8rem 20px var(--box-shabow);
    height: auto;
}



.quote {
    font-size: large;
    font-weight: 900;
    opacity: 90%;
}

.quote-0 {
    font-size: large;
    font-weight: 900;
}

.quote-2 {
    font-size: large;
    font-weight: 900;
}

.quote-3 {
    color: hsl(218.82deg 10.83% 30.78%);
    font-size: large;
    font-weight: 900;
    opacity: 70%;
}

.small-text {
    color: white;
    font-size: small;
    opacity: 70%;
}

article {
    margin-top: 1rem;
}

.dark-0 {
    opacity: 50%;
}

.dark,
.dark-0,
.n-1 {
    color: var(--black);
}

.attribution {
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}


@media screen and (max-width: 650px) {

    .container {
        display: block;
    }

    main {
        margin: auto;
    }

    .fl-1 {
        display: block;
    }

    .card {
        padding: 2rem;
        border-radius: 0.5rem;
        margin-top: 1.3rem;
        transition: all 0.3s ease;
    }

    .attribution {
        margin: 2rem;
    }
}