/* Desktop */
@media (min-width: 800px) {
    .certificates {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

    .placeholder {
        height: 80%;
        width: 38%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        padding: 2%;
    }

    .certificate {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .certificate img {
        width: 20%;
        margin-right: 5%;
    }

    .certificateText h3 {
        font-size: 1vw;
        font-weight: 900;
    }

    .certificateText p {
        font-size: 0.8vw;
    }

    .certificateText a {
        font-size: 0.8vw;
    }
}

/* Phone */
@media (max-width: 800px) {
    
}