
.content-home {
    padding: 2em;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-home > h1 {
    margin-bottom: 0;
    padding: 0 1em;
    font-size: 1.8em;
}

.content-home > h2 {
    font-size: 1.5em;
    margin-top: 0.5em;
    margin-bottom: 1em;
}

.content-home > * {
    text-align: center;
}

#landing-page-banner {
    position: absolute;
    top: 0;
    right: 1em;
    width: 3em;
    z-index: -1;
}


.content-home .button {
    padding: 0.6em 2em;
}


.certificate-types-button-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25em;
}

.certificate-types-button {
    position: relative;
    margin: 0;
    border-radius: 1em;
    box-shadow: -8px 8px 10px 2px rgb(0, 0, 0, 0.25);
    transition: transform 0.2s ease-in-out;
    padding: 1em;
}

.certificate-types-button .icon-div {
    height: 1em;
}

.certificate-types-button .label {
    text-align: left;
}

.certificate-types-button p {
    margin: 0;
    font-size: 0.9em;
}

.certificate-types-button:hover {
    transform: scale(1.05);
}



@media only screen and (min-width: 800px) {

    .content-home > h1 {
        padding: 0 2em;
    }

    #landing-page-banner {
        right: 1.25em;
        width: 4.25em;
    }


    .certificate-types-button-list {
        grid-template-columns: 1fr 1fr 1fr;
    }

}