
/* FONTS */

 @font-face {
    font-family: "Balsamiq Sans";
    src: url(../fonts/BalsamiqSans-Regular.ttf) format("truetype"),
}

@font-face {
    font-family: "Outfit";
    src: url(../fonts/Outfit/Outfit-VariableFont_wght.ttf) format("truetype"),
}

@font-face {
    font-family: "Bebas Neue";
    src: url(../fonts/Bebas_Neue/BebasNeue-Regular.ttf) format("truetype"),
}

 
   :root {
    --bgdarker: #ebe5d5; /* Use for body */
    --bg: #fcfcf0;      /* Use for main */
    --txt: #281e1e;     /* Use for text */
    --accent: #4a3432;  /* Use for asides and links */
    --accent2: #736b9b; /* Use for buttons */
    --accent3: #e07e3d; /* Use for buttons */
    --transbg: rgba(255, 255, 255, 0.8);
    --longcat: url(../images/orangOobie.png);

    --buttonRounded: 20px;
    }

[data-theme='calicoLight'] {
    --bgdarker: #ebe5d5; /* Use for body */
    --bg: #fcfcf0;      /* Use for main */
    --txt: #281e1e;     /* Use for text */
    --accent: #4a3432;  /* Use for asides and links */
    --accent2: #736b9b; /* Use for buttons */
    --accent3: #e07e3d; /* Use for buttons */
    --transbg: rgba(255, 255, 255, 0.8);
    --longcat: url(../images/orangOobie.png);
}

[data-theme='russianBlueDark'] {
    --bgdarker: #151415; /* Use for body */
    --bg: #32343f;      /* Use for main */
    --txt: #e6e6e6;     /* Use for text */
    --accent: #258d42;  /* Use for asides and links */
    --accent2: #ebe5d5; /* Use for buttons */
    --accent3: #185288; /* Use for buttons */
    --transbg: rgba(0, 0, 0, 0.8);
    --longcat: url(../images/blueOobie.png);
}


[data-theme='primaryPurr'] {
    --bgdarker: #f2f3ed; /* Use for body */
    --bg: #ffffff;      /* Use for main */
    --txt: #02001a;     /* Use for text */
    --accent: #bb2c2c;  /* Use for asides and links */
    --accent2: #235789; /* Use for buttons */
    --accent3: #edb034; /* Use for buttons */
    --longcat: url(../images/primaryOobie.png);
}

body {
    background-color: var(--bgdarker);
    font-family: "Outfit";
    color: var(--txt);
    font-size: 1rem;
}

header {
    color: var(--accent);
    background-color: var(--bg);
    border-radius: 5px;
    padding: 20px;
    box-sizing: border-box;
}

a {
    text-decoration: underline wavy var(--accent3);
    color: var(--accent3);
}

    a:hover {
        background-color: var(--bg);
    }

    button {
        background-color: var(--accent);
        color: var(--bg);
        border-radius: 5px;
    }

    button:hover {
        background-color: var(--accent3);
    }

.card-container {
    display: grid;
    grid-template-columns: 
        repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px;
}

.card {
    border-radius: 5px;
    background: var(--accent2);
    color: var(--bg);
    padding: 20px;
    box-sizing: border-box;
}

.freeStuff {
        border-radius: 5px;
    background: var(--accent);
    color: var(--bg);
    padding: 20px;
    box-sizing: border-box;
}

.faq {
    border-radius: 5px;
    background: var(--accent3);
    color: var(--bgdarker);
    padding: 20px;
    box-sizing: border-box;
}

footer {
    align-self: center;
    text-align: center;
    background-color: var(--bg);
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
}
