html, body {
    height: 100%;
    margin: 0;
    font-family: "Montserrat";
    font-weight: bold;
    display: block;
}

h2{
    text-align: center;
    font-size: 1.5em;
    color: #fff;
    background-color: #F7002A;
    margin: 0;
    padding: 25px 0;
    text-transform: uppercase;
    border-top: solid #000 3px;
    border-bottom: solid #000 3px;
}

article{
    min-height: calc(100% - 340px);
}

.content{
    width: 80%;
    margin: 60px auto;
}

.paper{
    display: block;
    width: 80%;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 0 auto;
    margin-bottom: 25px;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    transition-duration: 0.2s;
    transition-property: transform;
}

.paper:hover{
    transform: scale(1.025);
}

.paper img{
    width: 100%;
}

.paper .title-container{
    text-align: center;
    padding: 10px 20px;
}

@media only screen and (min-width: 800px){

    .content{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 60px 25px;
    }
}