/*! HTML5 Boilerplate v6.0.1 | 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: 1em;
    line-height: 1.4;
}

/*
 * 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 solid #eee;
    margin: 1em 0;
    padding: 0;
}



/* ==========================================================================
   Author's custom styles
   ========================================================================== */
body{
    font-family: clarendon-text-pro, serif;
    font-style: normal;
    background-image: url('../img/temp-bg.jpg');
    height: 100vh;
    color: white;
    line-height: 1.2;
}

h1 {
    font-weight: 700;
    font-size: 160px;
    color: rgba(241, 241, 0, .55);
    position: relative;
    margin: 0;
}
h1 img {
    position: relative;
    top: 10px;
}
h2 {
    margin: 0 0 10px;
}
h3 {
    margin: 0 0 5px;
}
h4 {
    margin: 0 0 5px;
    letter-spacing: 3px;
}
h5 {
    margin: 0 0 10px;
}
em {
    display: inline-block;
    font-family: "house-script",sans-serif;
    color: white;
    margin-bottom: 5px;
    font-size: 20px;
}
hr {
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}
.at {
    display: inline-block;
    font-size: 40px;
    position: relative;
    top: -60px;
    left: 130px;
}
.content-wrap {
    text-align: center;
    position: relative;
}
@media(min-width: 901px) {
    .content-wrap {
        top: 50%;
        transform: translateY(-50%);
    }
}

@media(max-width: 900px) {
    body {
        height: auto;
        padding: 50px 15px;
    }
    h1 {
        font-size: 120px;
    }
    .at {
        display: block;
        top: -10px;
        left: 0;
    }
    h1 img {
        position: relative;
        top: -60px;
        height: 70px !important;
    }
    .first {
        margin-top: -30px;
    }
}
@media(max-width: 767px) {
    h1 {
        font-size: 80px;
    }
    h1 img {
        top: -40px;
    }
    .first {
        margin-top: -40px;
    }
}