/*! HTML5 Boilerplate v6.1.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

   html {
    color: #222;
    font-size: 100%;
    line-height: 1.4;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: #211717;
  color: #eee;
}

body::before {
    content: " ";
    background-image: url(/img/rainforest.jpg);
    background-size: cover;
    background-position: center center;
    background-color: #211717;
    color: #ccc;
    height: 100vH;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="search"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px dotted #666;
    margin: 1rem 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: none;
    }



    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
/*
a:visited {
    color: #bfa240;
}
*/
a:hover, a:focus {
    text-decoration: underline;
}
a:hover, a:focus {
    text-decoration: none;
    background-color: #4444;

    border-radius: 2px;
color: #f3ebdc;
    transition: color .2s ease-in;
}

a {
    color: #e1bb73;
    text-decoration: none;
    transition: color .1s ease-out;
}



h1 {
    line-height: 1.1;
    color: #ddd;
    margin-top: 1.5em;
    margin-bottom: .5em;
    letter-spacing: .1em;
    font-weight: 300;
    text-align: right;
    text-transform: lowercase;
    font-size: 1.75rem;
}
@media (min-width: 1100px) {
    h1 {
        text-align: left;
    }
    header.lf-row {
        border-bottom: 1px solid #d0d0d0aa;
    }
}

h2 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 1.5em;
    color: #d9d8d8;
    margin-bottom: .5em;
    padding-top: .5em;
    border-top: 1px solid #66666680;
    letter-spacing: .1em;
    text-transform: uppercase;
}
@media (min-width: 1100px) {
    h2 {
        margin: 0;
        border: 0;
        padding: 0;
        font-size: 1rem;
        line-height: 1.4;
    }
}

p {
    font-weight: 400;
    text-rendering: optimizeLegibility;
    font-kerning: normal;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: .75rem;
}


.lf-main {
    display: flex;
    min-height: 100vH;
    align-items: center;
    justify-content: center;
    background-color: #0c08043d;
width: 100vW;}

.lf-main__body {
    width: 100%;
    /* max-width: 690px; */
    padding: 1rem 2rem 2rem;
    background-color: #2d2727e0;
    border-radius: 3px;
    margin: 1rem .5rem;
    position: relative;
    box-shadow: 1px 3px 17px 2px #000;
}
@media (min-width: 1100px) {
    .lf-main__body {
        width: 100%;
            padding: 2rem 5rem 1.5rem;
    }
}

.lf-main__body--citric {
    max-width: calc(100vW - 5%);
    max-height: calc(100vH - 2rem);
    height: 90%;
    width: 800px;
    padding: 1rem;
    background: #1f1e1e99;
    margin: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: .5rem;
}

.lf-main__body--citric .lf-main__hero {
    height: auto;
    max-width: 100%;
    max-height: calc(100vH - 2.5rem);
    margin: 1rem auto;
}

.lf-main__hero {
    height: auto;
    width: 100%;
    max-width: 666px;margin-bottom: 1rem;
margin: 0 auto;padding: 5rem;display: block;}

.lf-main__relaxation {
    font-weight: 400;
    text-rendering: optimizeLegibility;
    font-kerning: normal;
    color: #bfbfbf;
    letter-spacing: .25em;
    font-size: .75rem;
    margin-top: 1rem;
    text-align: center;
    line-height: 2
}

.lf-header-small {
    font-size: 0.5rem
}

span.lf-main__links {
    position: fixed;
    top: 0.5rem;
    right: 0.5rem;
    text-shadow: #000 2px 2px 4px;
    padding: 0.125rem 0.25rem;
    letter-spacing: .05em;
    font-size: 1rem;
    font-weight: 700;
    background: #00000075;
    line-height: 1.3;
    border-radius: 3px;
}
.lf-main__batterie {

}
.lf-space-maker {
    padding: 0 3em;
}

@media (min-width:1100px) {
    .lf-row {
        display: flex;
        margin-bottom: 1rem;
    }
    .lf-col-1 {
        width: 100%;
        max-width: 240px;
        text-align: right;
    }
    .lf-col-2 {
        width: 100%;
        max-width: calc(960px - 10rem - 240px);
        padding-left: 1rem;
    }
}
