@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    background:
        radial-gradient(1000px 600px at 100% -10%, rgba(34, 120, 60, .15), transparent 60%),
        radial-gradient(800px 500px at -10% 110%, rgba(20, 90, 40, .12), transparent 60%),
        #0d1a0f;
    color: #eef5ee;
    font-family: "Fredoka", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.55;
}

.container-header-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    max-width: 1100px;
    min-height: 140px;
    margin: 56px auto;
    padding: 0 24px;
    gap: 8px;
}

.container-header-flex h1 {
    font-size: 48px;
    letter-spacing: .3px;
    text-shadow: 0 6px 18px rgba(34, 120, 60, .45);
}

.container-header-flex p {
    font-family: "Rubik", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 16px;
    color: #8aab8a;
}

.container-main-grid {
    max-width: 1100px;
    margin: 24px auto 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 22px;
}

.card {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01)),
        #172116;
    border: 1px solid #2a3d2a;
    border-radius: 18px;

    padding: 18px 18px 20px;
    color: #eef5ee;

    box-shadow: 0 10px 24px rgba(0, 0, 0, .40);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover {
    cursor: none;
    transform: translateY(-4px);
    border-color: rgba(100, 200, 100, .25);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .55);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    display: block;
    margin: 8px 0 12px;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .50));
    transition: transform .25s ease;
}

.card:hover img {
    transform: translateY(-6px) scale(1.05);
}

.card h2 {
    font-size: 20px;
    letter-spacing: .2px;
    margin-bottom: 6px;
}

.card p {
    font-family: "Rubik", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #8aab8a;
}
