/*
Theme Name: WP Theme Dev - m07 a07 Child Theme
Theme URI: https://rbuchholz1.bitweb1.nwtc.edu

Author: Robert Buchholz
Author URI: https://buchholz.bitweb1.nwct.edu

Description: WP Theme Development - Module 07 Assignment 07 Theme
Tags: two-column

Template: wptd-a07

Version: 9999

Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 7.0 and greater

License: GNU GPU
License URI: https://www.gnu.org/licenses/gpl-3.0.txt

Text Domain: wptd-a07-child

General comments (optional).
*/
:root {
    --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --color-main: hsla(75, 50%, 50%, 1);
    --color-main-a20: hsla(75, 50%, 50%, .2);
    --color-main-a40: hsla(75, 50%, 50%, .4);
    --color-main-a60: hsla(75, 50%, 50%, .6);
    --color-main-a80: hsla(75, 50%, 50%, .8);
    --color-font-dark: hsla(75, 50%, 5%), 1;
    --color-font-light: hsla(0, 0%, 100%, 1);
    --color-font-light-a40: hsla(0, 0%, 100%, .4);
    --color-font-light-a60: hsla(0, 0%, 100%, .6);
    --color-font-light-a80: hsla(0, 0%, 100%, .8);
    --nav-main-height: 64px;
    --grid-columns-12: repeat(12, 1fr);
    --grid-columns-8: repeat(8, 1fr);
    --grid-gap: 20px;
    --grid-gap-half: calc(var(--grid-gap) * .5);
}

@media screen and (min-width: 768px) {
    header h1 {
        grid-column: span 12;
    }
}