/* RESET STYLES*/
*, *::before, *::after {
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, input, textarea, select, label, button, picture {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
html {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}
q, blockquote {
    quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none;
}
a img {
    border: 0;
}
img, picture, svg, video, canvas {
    border: 0;
	max-width: 100%;
}
a{
    text-decoration: none;
}
img, picture, svg, video, canvas,
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
    display: block;
}

/* GENERAL STYLES, TEXT FORMATTING AND  TYPOGRAPHY */

html, body {
    width: 100%;
    min-height: 100vh;
    font: normal 16px GothamPro, 'Arial', sans-serif;
    color: #000;
    background-color: rgb(255,183,23);
    line-height: 1;
}

strong{
    font-weight: bold;
}

em{
    font-style: italic;
}

sup {
    vertical-align: baseline;
    position: relative;
    top: -0.4em;
    font-size: 0.75rem;
    color: #fe0000;
}

/**
* For modern browsers - http://nicolasgallagher.com/micro-clearfix-hack/
*/
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

.main,
.section,
.headline,
.dominos-container,
.domino-with-message,
.ig-feed {
    position: relative;
    margin: 0 auto;
}

.section {
    padding-top: 50px;
}

.header {
    padding-bottom: 15%;
    background-color: transparent;
    background-image: url(../img/pascua-top-left.svg), url(../img/light-string-top.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right top;
    background-size: auto 100%, 75% auto;
}

.main {
    padding-top: 150px;
    margin-top: -150px;
}

.headline {
    width: 90%;
    max-width: 960px;
}

.sub-headline,
.body-text {
    font-size: 1.6875rem;
    line-height: 1.2;
}

.sub-headline {
    font-size: 2rem;
}

.pascual-right-middle,
.clickable-area {
    position: absolute;
}

.pascual-right-middle {
    top: 5%;
    right: 0;
    width: 15%;
}

.dominos-container,
.domino-with-message__img {
    display: block;
}

.dominos-container {
    width: 37.5rem;
    margin-top: 3.75rem;
}

.clickable-area {
    z-index: 3;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.domino-with-message {
    z-index: 5;
    width: 20.625rem;
    scale: 0;
    opacity: 0;
}

.domino-with-message__img {
    transform: rotate(90deg) translate(-4.9375rem, -4.9375rem);
    transform-origin: center;
    height: 20.625rem;
}

.domino-with-message__text {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 3rem 1rem;
    margin-top: -20.625rem;
    background-color: #fff;

    -moz-border-radius: 14px;
    -webkit-border-radius: 14px;
    -o-border-radius: 14px;
    -khtml-border-radius: 14px;
    border-radius: 14px;
    
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);

    font-size: 1.25rem;
}

.ig-feed {
    width: 80%;
}

.footer {
    padding-bottom: 35%;
    background-color: transparent;
    background-image: url(../img/pascuas-footer.svg), url(../img/light-string-footer.png);
    background-repeat: no-repeat, no-repeat;
    background-position: center bottom, center center;
    background-size: 100% auto, 100% auto;
}

.align-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    html, body {
        font-size: 14px;
    }

    .main {
        margin-top: -100px;
    }
}

@media (max-width: 768px) {
    html, body {
        font-size: 12px;
    }

    .main {
        padding-top: 100px;
        margin-top: -50px;
    }

    .pascual-right-middle {
        top: 12%;
    }
}

@media (max-width: 600px) {
    .main {
        padding-top: 75px;
    }

    .headline {
        font-size: 2.5rem;
    }

    .dominos-container {
        width: 100%;
    }

    .domino-with-message {
        width: 275px;
    }

    .domino-with-message__img {
        transform: rotate(90deg) translate(-65px, -65px);
        height: 275px;
    }

    .domino-with-message__text {
        font-size: 1.5rem;
    }

    .sub-headline,
    .body-text {
        padding-left: 3%;
        padding-right: 3%;
    }

    .body-text br {
        display: none;
    }

    .pascual-right-middle {
        top: 20%;
    }
}