/* CSS padding and Margin reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    }

/* This corrects the sticky header from overlapping the hero sections */
body{
    margin-top: 6.7em;
}