/*
 * PT Serif Regular (Latin)
 * License: /fonts/OFL.txt
 */
@font-face {
    font-display: swap;
    font-family: 'PT Serif';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/pt-serif-v17-latin-regular.woff2') format('woff2'),
        url('fonts/pt-serif-v17-latin-regular.woff') format('woff');
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    --primary-color: #94c11f;
    --secondary-color: #29592f;
    --text-color: #ffffff;
}

body {
    margin: 0;
    font-family: 'PT Serif', sans-serif;
    color: var(--text-color);
}

#logo {
    display: block;
    max-width: 100%;
    max-height: 12rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 2rem;
}

article {
    width: 100%;
    padding: 2rem;
    background-color: var(--primary-color);
}

article:nth-child(2) {
    background-color: var(--secondary-color);
}

article>h1 {
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.showcase {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.showcase__card {
    text-align: center;
    width: 100%;
    flex: 0 0 auto;
}

.showcase__card__title {
    font-size: 1.5rem;
}

@media (min-width: 600px) {
    .showcase__card {
        width: 50%;
        max-width: 30rem;
    }
}

a {
    color: var(--text-color);
    font-weight: bold;
    text-decoration: none;
}

a:visited {
    color: var(--text-color);
}

a:hover {
    text-decoration: underline;
}

.icon_label {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.icon_label__icon {
    fill: var(--text-color);
    width: 1rem;
}

.paragraph {
    max-width: 60rem;
    margin: auto;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    --text-color: #000000;
}