:root {
    --warmText-1: #fce1b6;
    --listText-1: rgb(250, 250, 250);
    --yellow-2: #ed1e12;
    --red-1: #650404;
    --LightGrayText: #808080;
    --DarkGrayText: #424242;
    --prettyFont: Almendra;
    --lightWarmText: #faf3b7;
    --medWarmText: #edd612;
    --bodySans: 'Merriweather Sans', sans-serif;
    --bodySerif: 'Merriweather Sans', serif;
}

/* Animate image flicker */
@keyframes imgFlicker {
    0%,
    19%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 1;
    }

    20%,
    24%,
    55% {
        opacity: 0.3;
    }
}

h3 {
}

.flickerImg {
    animation: imgFlicker 1.5s infinite alternate;
}

/* CJS landing */
.nameBox {
    background-color: rgba(255, 255, 255, 0.16);
    height: 206px;
    width: 500px;
}

.cjsNameFirst {
    color: var(--warmText-1);
    font-weight: 500;
    font-size: 75px;
    left: 92px;
    position: relative;
    top: 9px;
    font-family: 'DM Serif Text', serif;
    width: 163px;
    text-align: center;
}

.cjsNameLast {
    position: relative;
    top: -26px;
    color: var(--warmText-1);
    font-weight: 500;
    font-size: 70px;
    left: 179px;
    font-family: 'DM Serif Text', serif;
    width: 269px;
    text-align: center;
}

.cinemaScoreBox {
    background-color: #502118;
    height: 206px;
    width: 500px;
    color: var(--warmText-1);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 189px;
    padding-top: 16px;
}

figure#burnsbox {
    overflow: hidden;
    position: relative;
    padding-top: 30%;
    width: 110%;
    margin: 0 auto;
    height: 100vh;
}

figure#burnsbox img {
    animation: zoom 4s alternate infinite;
    position: absolute;
    top: 0;
    left: -5%;
    width: 110%;
    height: 110%;
}

body,
html {
    height: 100%;
    width: 100%;
}

body,
p,
h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}

p,
h1,
h2 {
    line-height: 1.3;
    text-shadow: 0 0 5px rgba(0, 0, 0, .6);
    width: 100%;
}

body {
    font-family: 'Source Sans Pro', helvetica, arial;
    font-size: 18px;
    font-weight: 300;
}

p {
    font-size: 1em;
}

p.p--credits {
    font-size: .9em;
}

h1,
h2 {
    font-size: 3.5em;
    font-weight: 700;
    text-align: center;
}

a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

a.a--no-weight {
    font-weight: 300;
}

.fullPageSection {
    width: 100%;
    height: 100vh;
}

.parallax__container {
    clip: rect(0, auto, auto, 0);
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -100;
}

.parallax__container .parallax {
    /* can be put in a seperate class for better control */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    /* --------------------------- */
    position: fixed;
    top: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    width: 100%;
}

.bg0 {
    background-image: url("assets/images/lamps-bkg_Medium.png" );
}

.bg1 {
    background-image: url("assets/images/original-2000x1333.jpg");
}

#bg3 {
    background-image: url("../img/bg3.jpg");
}

.show-on-mobile--inline {
    display: none;
}

.nameTitleBlock {
    background-color: rgba(255, 255, 255, 0.12);
    height: 206px;
    width: 502px;
    top: -310px;
    z-index: 300;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@media screen and (max-width: 1200px) {
    .nameTitleBlock {
        background-color: rgba(255, 255, 255, 0.12);
        height: 206px;
        width: 502px;
        position: relative;
        z-index: 300;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 991px) {
    .nameTitleBlock {
        background-color: rgba(255, 255, 255, 0.12);
        height: 206px;
        width: 502px;
        position: relative;
        top: -139px;
        left: 93px;
        z-index: 300;
    }
}

@media screen and (max-width: 570px) {
    .nameTitleBlock {
        background-color: rgba(255, 255, 255, 0.12);
        height: 206px;
        width: 502px;
        position: relative;
        top: -241px;
        left: -48px;
        z-index: 300;
    }
}

@media screen and (max-width: 480px) {
    .hide-on-mobile {
        display: none;
    }

    .show-on-mobile--inline {
        display: inline;
    }
}


