/* 
Basic css changes for all elements
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #fff;
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
}

/* Reusable components */

.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

box {
    padding: 1%;
}

/* headings */

h1,
h2,
h3 {
    font-weight: 300;
    text-transform: uppercase;
}

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 250%;
    word-spacing: 4px;
    letter-spacing: 1px; 
}

h2{
    font-size: 180%;
    word-spacing: 10px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px; 
    font-weight: 400;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #e67e22;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}

h3 {
    font-size: 110%;
    margin-bottom: 15px;
    text-align: center;
}

/* paragraphs */

.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 22%;
}

.box p {
    font-size: 90%;
    line-height: 145%;
}

/* ICONS */

.icon-big {
    font-size: 200%;
    display: block;
    color: #e67e22;
    margin-bottom: 10px;
    text-align: center;
}

/* 
Header styling
*/

header {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),url(imgs/header-background.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.header-text-box {
    position: absolute;
    width: 1140px;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    height: auto;
    width: 300px;
    float: left;
    margin-top: 20px;
    padding: 0;
}

.logo-div {
   
}

.main-nav {
    float: right;
    list-style: none;
    margin-top: 30px;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #2ecc71;
}
/*
Button CSS
*/

.btn:link,
.btn:visited {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    color: #fff;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited
{
    background-color: #e67e22;
    border: 1px solid #e67e22;
    color: #fff;
    margin-right: 15px;
}

.btn-ghost:link
.btn-ghost:visited {
    border: 1px solid #e67e22;
    color: #e67e22;
}

.btn:hover,
.btn:active {
    background-color: #2ecc71;
}

.btn-full:hover,
.btn-full:active
{
    border: 1px solid #2ecc71;
}

.btn-ghost:hover
.btn-ghost:active {
    border: 1px solid #2ecc71;
    color: #fff;
}

