html body,
html body footer{
    background-color: #20351C;
}

html body header{
    background-color: #162513;
}
section{
    margin: 8rem 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
section .container{
    width: 70%;
}

section .grid{
    display: grid;
    gap: 2rem;
    justify-content: center;
    grid-template-columns: 1fr 2fr 1fr;
}

section .title{
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 100;
    grid-column: span 3;
}
section .img{
    max-width: 300px;
    grid-column: 1;
    overflow: hidden;
    text-align: center;
}
section .commentary{
    display: grid;
    gap: .5rem;
    grid-template-columns: 1fr 2fr 2fr;
    background-color: #F1F1F1;
    border-radius: 5px;
    padding: 1rem;
    grid-column: span 2;
    box-shadow: 4px 4px 10px black;
}

.commentary h3{
    grid-column: span 3;
    text-transform: uppercase;
    text-align: center;
    align-self: center;
}

.commentary .author{
    grid-column: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: start;
    flex-direction: column;
    gap: 1rem;
}

.commentary .author img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.commentary .author a{
    color: #111;
}

.commentary .author a:hover{
    color: var(--gold);
}

.commentary .commentary-text{
    grid-column: span 2;
}

section .button{
    justify-self: center;
    color: #20351C;
    text-align: center;
    display: inline-block;
    padding: .5rem 1rem;
    margin: 1rem;
    border-radius: 1rem;
    background-color: white;
    cursor: pointer;
    grid-column: 1;
    width: 10rem;    
}

section .button:hover{
    background-color: #cecece;
}

@media screen and (min-width: 320px) and (max-width: 768px){
    section .grid,
    section .commentary{
        grid-template-columns: 1fr;
        gap: 0;
    }
    section .grid .img{
        min-width: 300px;
    }
    section .commentary{
        grid-column: 1;
        gap: 1rem;
    }
    section .commentary .commentary-text{
        grid-column: 1;
    }
}