/* -------------------------------------------------- */
/* ---------- BASIC SETUP ---------- */
/* -------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #fff;
    color: #555;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
}

/* -------------------------------------------------- */
/* ---------- REUSABLE COMPONENTS ---------- */
/* -------------------------------------------------- */

.row {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
}

/* ---------- HEADINGS ---------- */

h1 {
    margin: 0;
    color: #fff;
    font-size: 240%;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 4px;
}

h2 {
    margin: auto;
    color: #fff;
    padding: 25px 0px;
    font-size: 200%;
    font-weight: 300;
    letter-spacing: 5px;
}

/* ---------- BUTTONS ---------- */

.btn:link,
.btn:visited {
    display: inline-block;
    padding: 10px 20px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
    }

.btn-full:link,
.btn-full:visited {
    background-color: #27ae60;
    border: 1px solid #27ae60;
    color: #fff;
    margin-right: 15px;
}

.btn-ghost:link,
.btm-ghost:visited {
    border: 1px solid #27ae60;
    color: #27ae60;
    margin-right: 15px;
}

.btn:hover,
.btn:active {
    text-transform: uppercase;
    background-color: #17693a;
}

.btn-full:hover,
.btn-full:active {
    border: 1px solid #27ae60;
}

.btn-ghost:hover,
.btm-ghost:active {
    border: 1px solid #27ae60;
    color: #fff;
}

/* -------------------------------------------------- */
/* ---------- HEADER ---------- */
/* -------------------------------------------------- */

header {
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/hero.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
}

.hero-text-box {
    position: absolute;
    top: 45%;
    float: left;
}

.title {
    margin: 40px 0px;
    float: left;
    text-transform: uppercase;
}

.hero-links {
    position: absolute;
    top: 65%;
    float: left;
}