@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova_Clorox-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'CloroxDecors';
    src: url('../fonts/CloroxDecors-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, a, img, ol, ul, li {
    margin: 0;~
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* Page styles */
body {
    min-height: 100vh;
    background-color: #ffffff;
    /*display: flex;*/
    /*flex-direction: column;*/
    font-family: 'ProximaNova', sans-serif;
}
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fcbe44;
    border-bottom: 1px solid #D1202F;
}
.brandLogo {
    width: 200px;
    padding: 10px 0;
}
section#main-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    align-items: center;
    justify-content: space-evenly;
    /*background: #efefef;*/
}
#app-wrapper {
    box-sizing: border-box;
    width: 100vw;
}
.imgWrapper {
    max-width: 846px;
    box-sizing: border-box;
    margin: 0 auto 20px;
}
.imgWrapper img {
    width: 100%;
}
.videoOuterWrapper {
    max-width: 846px;
    box-sizing: border-box;
    margin: 0 auto 20px;
}
.videoTitle {
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
}
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.importantInfo {
    font-size: small;
    color: #493728;
    box-sizing: border-box;
    max-width: 960px;
    margin: 0 auto 10px;
    text-align: center;
}
footer {
    width: 100%;
    color: #493728;
    background-color: #eeeeee;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 5px;
    text-align: center;
}
.footerText {
    font-size: .8em;
}
.footerText a:link, .footerText a:visited {
    color: #adadad;
}
.footerText a:hover {
    color: #c5203f;
}

@media screen and (max-width: 800px) {
    .brandLogoContainer svg {
        /*height: 30px;*/
    }
    #ctaHeader {

    }
    #app-wrapper {
        width: 100%;
    }
    footer {

    }
}
