
/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Bree+Serif);

body {
    background: #70ba5a;
    color: #ffffff;
    word-wrap:break-word !important;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    width:100%;
}
h1 {
    margin-top: 25px;
    text-align:center;
    font-size:60px;
    font-family: 'Bree Serif', 'serif';
}

h1 span{
    display: block;
    padding-top: 25px;
}

h3 {
    font-size: 30px;
    text-align: center;
    color: #FFF;
}

h3 a {
    color: #FFF;
}

a {
    color: #FFF;
}


/*-------- Navigation ---------*/
#container {
    margin: 0 auto;
    position: sticky;
    top:0px;
}
#location a{
    background-color: black;
}

nav {
    margin:0;
    background-color: #E64A19;
    text-align: right;
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

nav ul li {
    display:inline-block;
    background-color: #E64A19;
}

nav a {
    display:block;
    padding:0 10px;
    color:#FFF;
    font-size:20px;
    line-height: 60px;
    text-decoration:none;
}

nav a:hover {
    background-color: #000000;
}

/* Hide Dropdowns by Default */
nav ul ul {
    display: none;
    position: absolute;
    top: 60px; /* the height of the main nav */
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display:inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width:170px;
    float:none;
    display:list-item;
    position: relative;
    left: -170px;
}

/* Second, Third and more Tiers */
nav ul ul ul li {
    position: relative;
    top:-60px;
    left:-170px;
}
 nav img{
     padding-top: 10px;
 }

/* Change this in order to change the Dropdown symbol */
li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }

/*-------- Carousel ---------*/

#carousel figure{
    width:800px;
    margin: auto;
}

/*-------- Blog ---------*/
.post{
    width:600px;
    border:1px solid white;
    border-radius: 20px;
    padding:0 20px;
    margin: 20px;
    color: black;
    text-align: left;
}

/*-------- Products ---------*/
.product{
    width:600px;
    border:1px solid white;
    border-radius: 20px;
    padding:0 20px;
    margin: 20px;
    color: black;
    text-align: left;
}