body{
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 500;
    font-size: 13px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    background-color: hsl(214, 17%, 92%);
}

.content{
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    max-width: 100%;
    gap: 20px;
}

h1{
    font-weight: 600;
}

.one, .two, .three, .four, .five{
    padding: 30px;
    border-radius: 5px;
}

.one{
    background-color:  hsl(263, 55%, 52%);
    color: hsl(0, 0%, 100%);
}

.one img{
    width: 35px;
    height: auto;
    border-radius: 50%;
}

.one .details{
    margin-top: -45px;
    margin-inline-start: 50px;
    line-height: 0.3em;
}

.one h2{
    font-size: 14px;
    width: 89%;
    margin-top: 20px;
}

.one .quotes{
    font-size: 10px;
    width: 100%;
    line-height: 1.5em;
}

.two{
    background-color: hsl(217, 19%, 35%);
    color: hsl(0, 0%, 100%);
}

.two img{
    width: 35px;
    height: auto;
    border-radius: 50%;
}

.two .details{
    margin-top: -45px;
    margin-inline-start: 50px;
    line-height: 0.3em;
}

.two h2{
    font-size: 14px;
    margin-top: 20px;
}

.two .quotes{
    font-size: 10px;
    width: 100%;
    line-height: 1.5em;
}

.three{
    background-color: hsl(0, 0%, 100%);
    color: hsl(0, 0%, 7%);
}

.three img{
    width: 35px;
    height: auto;
    border-radius: 50%;
}

.three .details{
    margin-top: -45px;
    margin-inline-start: 50px;
    line-height: 0.3em;
}

.three h2{
    font-size: 14px;
    margin-top: 20px;
}

.three .quotes{
    font-size: 10px;
    width: 100%;
    line-height: 1.5em;
}

.four{
    background-color:  hsl(219, 29%, 14%);
    color: hsl(0, 0%, 100%);
}

.four img{
    width: 35px;
    height: auto;
    border-radius: 50%;
}

.four .details{
    margin-top: -45px;
    margin-inline-start: 50px;
    line-height: 0.3em;
}

.four h2{
    font-size: 14px;
    width: 90%;
}

.four .quotes{
    font-size: 10px;
    width: 100%;
    line-height: 1.5em;
}

.five{
    background-color: hsl(0, 0%, 100%);
    color: hsl(0, 0%, 7%);
}

.five img{
    width: 35px;
    height: auto;
    border-radius: 50%;
}

.five .details{
    margin-top: -45px;
    margin-inline-start: 50px;
    line-height: 0.3em;
}

.five h2{
    font-size: 14px;
    margin-top: 20px;
    width: 80%;
}

.five .quotes{
    font-size: 10px;
    width: 100%;
    line-height: 1.5em;

}

.attribution { 
    font-size: 11px; text-align: center; 
}

.attribution a { 
    color: hsl(228, 45%, 44%); 
}

@media screen and (min-width: 768px) {
    body{
        margin: 30px;
    }
    .content{
        display: grid;
        margin: 0 auto;
        max-width: 100%;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: minmax(60px, auto);
        gap: 20px;
    }

        .one, .two, .three, .four, .five{
        padding: 30px;
        border-radius: 5px;
    }

    .one{
        background-color:  hsl(263, 55%, 52%);
        color: hsl(0, 0%, 100%);
        grid-column: span 2;
        grid-row: span 3;
        background-image: url('../images/bg-pattern-quotation.svg');
        background-repeat: no-repeat;
        background-position: right 50px top 0px;
        background-size: 90px;
    }

    .one img{
        width: 35px;
        height: auto;
        border-radius: 50%;
    }

    .one .details{
        font-size: 10px;
        margin-top: -40px;
        margin-inline-start: 50px;
        line-height: 0.3em;
    }

    .one h2{
        font-size: 14px;
        width: 100%;
        margin-top: 20px;
    }

    .one .quotes{
        font-size: 10px;
        width: 100%;
        line-height: 1.5em;
    }

    .two{
        background-color: hsl(217, 19%, 35%);
        color: hsl(0, 0%, 100%);
        grid-column: span 1;
        grid-row: span 3;
    }

    .two img{
        width: 35px;
        height: auto;
        border-radius: 50%;
    }

    .two .details{
        font-size: 10px;
        margin-top: -40px;
        margin-inline-start: 50px;
        line-height: 0.3em;
        width: 80px;
    }

    .two h2{
        font-size: 14px;
        margin-top: 20px;
    }

    .two .quotes{
        font-size: 10px;
        width: 100%;
        line-height: 1.5em;
    }

    .five{
        background-color: hsl(0, 0%, 100%);
        color: hsl(0, 0%, 7%);
        grid-column: span 1;
        grid-column-start: 4;
        grid-row-start: 1;
        grid-row-end: 5;
    }

    .five img{
        width: 35px;
        height: auto;
        border-radius: 50%;
    }

    .five .details{
        font-size: 10px;
        margin-top: -40px;
        margin-inline-start: 50px;
        line-height: 0.3em;
        width: 80px;
    }

    .five h2{
        font-size: 14px;
        margin-top: 20px;
        width: 100%;
    }

    .five .quotes{
        font-size: 10px;
        width: 100%;
        line-height: 1.5em;

    }

    .four{
        background-color:  hsl(219, 29%, 14%);
        color: hsl(0, 0%, 100%);
        grid-column: span 2;
    }

    .four img{
        width: 35px;
        height: auto;
        border-radius: 50%;
    }

    .four .details{
        font-size: 10px;
        margin-top: -40px;
        margin-inline-start: 50px;
        line-height: 0.3em;
        width: 80px;
    }

    .four h2{
        font-size: 14px;
        width: 100%;
    }

    .four .quotes{
        font-size: 10px;
        width: 100%;
        line-height: 1.5em;
    }

    .three{
        background-color: hsl(0, 0%, 100%);
        color: hsl(0, 0%, 7%);
        grid-column-start: 2;
        grid-column-end: 4;
        grid-column: span 1;
        grid-row: span 1;
    }

    .three img{
        width: 35px;
        height: auto;
        border-radius: 50%;
    }

    .three .details{
        font-size: 10px;
        margin-top: -40px;
        margin-inline-start: 50px;
        line-height: 0.3em;
        width: 80px;
    }

    .three h2{
        font-size: 14px;
        margin-top: 20px;
    }

    .three .quotes{
        font-size: 10px;
        width: 100%;
        line-height: 1.5em;
    }
    
}