@charset "utf-8";
/* CSS Document */


@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


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

:root {
    --grey:#363e3d;
    --red:#b60203;
    --lt-grey:#e6edec;
    --md-grey:#727d7c;
    --accent:#305496;

    --spacer:5rem;
    --double-spacer:10rem;
    --body-copy:1.2rem;
    --heading:2.2rem;
}

html {
    scroll-behavior: smooth;
	scroll-padding-top:95px;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight:100;
    line-height:1.5;
}

h1 {
    font-size:var(--heading);
}

p {
	margin-bottom:2rem;
}

.cta {
    background:var(--red);
    padding:1.5rem 3rem;
	color:white;
	text-decoration: none;
    text-transform:uppercase;
    width:fit-content;
    display:inline-block;
}

.content-heading {
    background:var(--grey);
    color:white;
    padding:3rem;
    margin-bottom:3rem;
}

.heading h1 {
    padding:0 4rem;
}