/** Tags **/

* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

html,
body {
    color: white;
    background: #F1C345;
}

h1,
h2,
h3,
h4,
h5,
ul,
ol,
p {
    margin: 1rem 0;
}

p {
    line-height: 1.5;
}


/** Common **/

.wrapper {
    height: 100vh;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

.container {
    border: 15px solid white;
    padding: 3rem 6rem;
    min-height: calc(100vh - 40px);
    position: relative;
    z-index: 1;
    margin: 20px;
}

.quote {
    font-size: 6rem;
    max-width: 8em;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    width: 70%;
}

.quote::before,
.quote::after {
    content: '"';
    position: absolute;
}

.quote::before {
    right: 100%;
    top: -0.3em;
}

.quote::after {
    position: static;
}

.author {

    color: #70560B;
    font-weight: bold;
    font-size: 2rem;
    margin: 1rem 0;
}

.blurb {
    color: black;
    opacity: .8;
    max-width: 33em;
    font-size: 1.2em;
    margin: 6rem 0 2rem;
    width: 50%;
}

.button {
    display: inline-block;
    background: #1c1c1c;
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    padding: 1em 1em;
    border-radius: 0.5em;
    position: relative;
    padding-left: 4.5em;
    transition: transform .5s ease;
}

.button:hover {
    transform: translateX(1em);
}

.button__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 3.5em;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: .5em 0 0 .5em;
}

.button__icon svg {
    width: 24%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.hand {
    position: absolute;
    left: 50%;
    bottom: -10%;
    height: 105%;
}

.thumb,
.fingers {
    position: absolute;
    transform: translateX(-50%);
    left: 70%;
    bottom: -5%;
    width: 50%;
}

#scene {
    overflow: hidden;
}

#scene,
.scene__layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media (max-width: 1300px) {

    #scene { opacity: .5; }
    .container { padding: 5% 8%; margin: 2%; border-width: 10px; }
    .quote { font-size: 5rem; width: auto; }
    .author { font-size: 1.6rem; }
    .blurb { font-size: 1rem; width: auto; }
    .thumb,
    .fingers { left: 50%; width: 80%; }
}

@media (max-width: 800px) {

    .quote { font-size: 4rem; }
    .author { font-size: 1.4rem; }
    .thumb,
    .fingers { left: 50%; width: 100%; }

}

@media (max-width: 700px) {

    .quote { font-size: 3rem; }
    .author { font-size: 1.2rem; }
    .blurb { max-width: none; margin: 2rem 0; }
    .thumb,
    .fingers { left: 50%; width: 120%; }
    
}