.certificate {
    align-items: center;
    background-color: #FFF;
    border-color: #E4312A;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 2px 2px 4px rgba(51, 51, 51, 0.25);
    box-sizing: border-box;
    flex-direction: column;
    height: auto;
    justify-content: center;
    padding: 16px;
    transition: transform .2s;
    width: 168px;
}

.certificate:hover {
    cursor: pointer;
    transform: scale(1.05) rotate(1deg);
}
    
.certificate > span {
    font-size: 12px;
}
    
.certificate strong {
    display: inline-block;
    font-size: 14px;
}
    
.certificate > img {
    padding-top: 8px;
}
    
.certificateList {
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.certificateList a {
    color: #333;
    text-decoration: none;
    margin: 12px;
}

@media (min-width: 415px) and (max-width: 768px) {
    .certificateList {
        justify-content: center;
    }       
}