:root {
    --main-font: 'Agency FB';
    --black: #000000;
    --white: #ffffff;
    --orange: #CD5B1C;
	--basic-spacing: clamp( 20px, 3rem, 60px);
    --transition: all .3s ease-in-out;
	--body-font-size: clamp(20px, 2.2rem, 30px);
	--h-font-size: clamp(45px, 3rem, 95px);
}

body {
    box-sizing: border-box;
}
body * {
    padding:0;
    margin: 0;
    box-sizing: border-box;
}
body {
    background-color: var(--black);
}
/* Typography */
html {
    font-size: 1vw;
}
body,
body a {
    font-family: var(--main-font);
    color: var(--white);
    font-size: var(--body-font-size);
    letter-spacing: .025em;
	 text-decoration: none;
	line-height: 1.25em;
	position: relative;
}
h1,
h2 {
    text-transform: uppercase;
    line-height: 1;
}
h1:after,
h2:after {
    content: '';
    display: block;
    margin: 1.5rem auto 1.5rem 0;
    height: 1px;
    width: 33%;
    background-color: var(--orange);
}
body a:hover {
    color: var(--orange);
    transition: var(--transition);
}
body a {
	display: block;
	margin-bottom: .1rem;
    width: max-content
}
body a:after {
	content: '';
	height: 2px;
	display: block;
	width: 0;
	background-color: var(--orange);
	transition: var(--transition);
}
body a:hover:after {
	width: 100%;
}
/* Footer Copy */
.footer-copy {
	display:  -webkit-flex;
	display: -ms-flexbox;
	display: flex !important;
	flex-flow: row wrap;
	justify-content: center !important;
	align-items: center !important;
	padding: 25px 0 0;
}
.footer-copy,
.footer-copy a {
	font-size: calc(var(--body-font-size) / 1.5);
}
.footer-copy a {
	margin: 0 0 0 10px;
}