/*
Theme Name: My First WP Theme Child
Theme URI: https://svaughan.bitweb1.nwtc.edu/

Author: Sarah Vaughan
Author URI: https://svaughan.bitweb1.nwtc.edu/

Description: My First WP Child Theme
Tags: two-columns

Template: my-first-wp-theme

Version: 1.0

Requires at least: 5.0
Tested up to: 6.0
Requires PHP: 7.0

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

Text Domain: wcmd

General comments (optional).
*/


/* =WordPress Core
-------------------------------------------------------------- */

:root {
    --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --color-main: rgb(191, 64, 111);
    --color-main-a20: hsla(329, 50%, 50%, 0.2);
    --color-main-a40: hsla(329, 50%, 50%, .4);
    --color-main-a60: hsla(329, 50%, 50%, .6);
    --color-main-a80: hsla(329, 50%, 50%, .8);
    --color-font-dark: hsla(329, 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;
    }
}