.documentes {
    margin: 2rem;
    display: flex;
    justify-content: center;
}

.document {
    width: 20rem;
    height: 15rem;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: white;
}

.documentTitle {
    text-align: center;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 3rem;
    border-bottom: 1px solid #bbbbbb;
}

.documentThumbnail {
    width: 100%;
    object-fit: cover;
    object-position: top;
    height: 60%;
}

.downloadDocumentIcon {
    display: flex;
    justify-content: right;
    padding: 0 1rem;
}

.downloadDocumentIcon > img {
    height: 2rem;
}