@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

@font-face {
    font-family: 'body';
    src: url('../fonts/Urbanist-VariableFont_wght.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'bodybold';
    src: url('../fonts/roboto-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    src: url(../fonts/blenda_script-webfont.woff2) format('woff2');
    font-family: headings;
}
:root {
    --neutralLight: #fff;
    --neutralDark: #000;
    --neutralMid: #474648;
    --mainDark: #43270F; /*DARK BROWN*/
    --mainLight: #87D0D8; /*LIGHT AQUA*/
    --comp: #FF3706; /*ORANGE*/
    --comp2: #09AEA1; /*DARK AQUA/TEAL*/
}
* {
	box-sizing: border-box;
	font-family: body;
}
html {
    height: 100%; /*FOR DISPLAY GRID - FOOTER AT BOTTOM OF SHORT PAGES*/
    overflow-y: scroll;
}
body {
    min-height: 100%; /*FOR DISPLAY GRID - FOOTER AT BOTTOM OF SHORT PAGES*/
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-rows: 1fr auto;
}
.wrapper:not(#index .wrapper) {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 100%;
}
section {
    width: 40%;
    margin: 0 auto;
    line-height: 2;
}
h1 {
    font-size: 1.5rem;
    color: var(--comp2);
    border-bottom: 1px solid var(--comp2);
}
header ul,
nav ul,
footer ul {
	list-style-type: none;
	padding: 0;
    margin: 0;
}
header a,
nav a,
footer a {
	text-decoration: none;
	color: inherit;
}
p:has(.float-right) {
    float: right;
    width: 50%;
    margin-left: 3rem;
}
p:has(.float-left) {
    float: left;
    width: 50%;
    margin-right: 3rem;
}
[class*="float"] img {
    width: 100%;
}