/*
Theme Name: CC Theme
Theme URI: https://onepercentcopy.com
Author: One Percent Copy
Author URI: https://onepercentcopy.com
Description: Custom theme for onepercentcopy.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cc-theme
*/

/* ============================================================
   COLOUR VARIABLES
   ============================================================ */

:root {
	--yellow-bright:  #FDEC00;
	--yellow-light:   #F4DD08;
	--yellow-medium:  #E6CE1D;
	--coral-red:      #FF4653;
	--zeus-grey:      #373833;
	--saltpan:        #E8EAE3;
	--classy-grey:    #403F45;
	--dark-grey:      #191615;
	--white:          #FFFFFF;
}

/* ============================================================
   BASE RESET & BOX MODEL
   ============================================================ */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* ============================================================
   BASE TYPOGRAPHY
   ============================================================ */

html {
	font-size: 21px;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 1rem;       /* 21px */
	line-height: 1.6;
	color: var(--zeus-grey);
	background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	line-height: 1.2;
	color: var(--zeus-grey);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
	margin-bottom: 1.2em;
}

a {
	color: var(--zeus-grey);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--yellow-light);
}

strong, b {
	font-weight: 700;
}

ul, ol {
	padding-left: 1.4em;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}
