/*
font-family: 'Lilita One', cursive;
font-family: 'Maven Pro', sans-serif;
*/

/****************************************
           STYLE DIRECTORY
****************************************/

/****************************************
           1. Universal
           2. List Styling
           3. Navigation
           4. Footer Navigation
           5. Pages - Home
           6. Pages - About
           7. Pages - FAQ
           8. Pages - Shopping Cart
           9. Pages - Products Home
          10. Pages - Products Bulk
          11. Pages - Products Small
          12. Pages - Products Custom
          13. Pages - Contact
          14. Pages - Testimonials
          15. Start Media Queries
          16. Media Query 500px
          17. Media Query 712px
          18. Media Query 800px
****************************************/

/****************************************
        1. Universal
****************************************/

*{
    box-sizing: border-box;
	border: 0;
    margin: 0;
    padding: 0;
}
article, aside, video, audio, figure, figcaption, header, footer nav, section {
display:block;
}
body {
    line-height: 1; /* lh1 */
    margin: 0 auto;
    font: 200 100% 'Maven Pro', sans-serif;
/* shorthand font property - font: font-style font-variant font-weight font-size/line-height font-family; NOTE - You must have at min font-size and font-family */
	background-color: #f0f0f0; 
	

 background:
    linear-gradient(
    rgba(220, 220, 220, .7),
    rgba(220, 220, 220, .7)
      
    ),
        url('../images/back_opt.jpg');

    
    -webkit-background-size: cover;
    -moz-background-size: cover; 
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    position: relative;



}
.wrapper {
    margin: 0 auto;
    min-width: 26em;
    text-align: center;
}

h1 {
    background-color: #fff;
    font-family: 'Times New Roman', serif;
    font-size: 4em; /* fz2em */
    letter-spacing: 2px; /* ls2px */
   /* margin-top: 1em; /* m1em0 */
    text-align: center; /* tac */
    box-shadow: 0 0 5px white, 2px 2px 20px white; /* tsh */
}
h2 {
    font-family: 'Lilita One', cursive;
    color: #000;
    font-size:2em;
    letter-spacing: 2px;
    margin:1em 0;
    text-align: center;
    text-shadow: 0 0 6px #fff, 2px 2px 3px #fff;
}
h3{
   font-family: 'Lilita One', cursive;
    color: #000;
    font-size: 1.5em;
    letter-spacing: 2px; 
}

p {
    font-family: 'Maven Pro', sans-serif;
    color: #000;
    font-size:1em;
    margin-bottom: .5em;
    text-align: left;
    padding: 0.5em 1em;
}

.pcenter{
	display: inline-block;
	align-content: center;
	
}


.clearIt {
    clear: both;
}

.center {
    max-width:100%;
    height: auto;
}

/***************************
    2. LIST STYLING
***************************/
ul {
    list-style-type: none;
    
}
/***************************
    3. NAVIGATION
***************************/

nav {   
    font-weight: 200;
    background-color: #222;
}
nav ul {
    list-style-type: none;
}
nav ul li {
    
    border-radius: 5px;
}
nav a {
    color: floralwhite;
    padding: .5em;
    display: block; 
    text-decoration: none;
    text-align: center;
}
nav a:hover {
    color: black; 
    background-color: #444;
    box-shadow: 0 2px 5px #000;
    letter-spacing: 2px;
    border-radius: 3px;
}
.selected {
    color: #555;
}
.hide {
    display: none;
    position: absolute;
    border-radius: 5px;
}

/*
.dropdown-content {
    display: none;
    position: absolute;
    border-radius: 5px;
}
*/
/***************************
    4. FOOTER NAVIGATION
***************************/

.social-icon {
    width: 30px;
    height: 30px;
    margin: 0 10px;
    z-index: 23;
}

footer {
    background-color: #333;
    text-align: center;
    position: relative;
    padding: 0px;
}
footer ul {
    list-style-type:none;
}
footer li {
    display:inline-block;
    margin: 1em .5em;
}
footer a {
    text-decoration:none;
    color:#fff;
    padding:.6em;
}
footer a:hover {
    color:#888;
}
footer p {
    color:#888;
    
}
footer figure {
    position: absolute;
    top: -1.8em;
}

footer .top {
    position: absolute;
    top: -1.4em;
    right: .5em;
}

.top a {
    text-decoration: none;
    color: #fff;
}

#copyright {
    color: white;
    font-size: .7em;
    padding: 1.5em 0 .5em;
}

/***************************
    Button
***************************/

/* modified version of http://codepen.io/guvootes/pen/eyDAb */
.button, #submitbtn {
  width: 160px;
  height: 35px;
  outline: none;
  border: none;
  border-radius: .3em;
  margin: .5em .5em;
  font-size: 1.1em;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
  overflow: hidden;
  border-bottom: 1px solid #0071ff;
  background-image: -webkit-gradient(linear 50% 0%, 50% 100%, color-stop(0%, #66aaff), color-stop(100%, #4d9cff));
  background-image: -webkit-linear-gradient(#90b6b0, #155967);
  background-image: -moz-linear-gradient(#90b6b0, #155967);
  background-image: -o-linear-gradient(#90b6b0, #155967);
  background-image: linear-gradient(#90b6b0, #155967);
  display: block;
  padding:.2em .4em .4em;/* Some padding */
  color: #f0f0f0; /* White text */	
  cursor: pointer; /* Pointer/hand icon */
  float: left; /* Float the buttons side by side */
 }
/* Add a background color on hover */
.button:hover, #submitbtn:hover {
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d9cff), color-stop(100%, #338eff));
  background-image: -webkit-linear-gradient(#4d9cff, #338eff);
  background-image: -moz-linear-gradient(#4d9cff, #338eff);
  background-image: -o-linear-gradient(#4d9cff, #338eff);
  background-image: linear-gradient(#4d9cff, #338eff);
  /*background-color: #3e8e41;*/
}
.button:active, #submitbtn:active {
  border-bottom: 0;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #338eff), color-stop(100%, #4d9cff));
  background-image: -webkit-linear-gradient(#338eff, #4d9cff);
  background-image: -moz-linear-gradient(#338eff, #4d9cff);
  background-image: -o-linear-gradient(#338eff, #4d9cff);
  background-image: linear-gradient(#338eff, #4d9cff);
  -webkit-box-shadow: inset 0 1px 3px 1px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 0 1px 3px 1px rgba(0,0,0,0.25);
  box-shadow: inset 0 1px 3px 1px rgba(0,0,0,0.25);
}


.button:not(:last-child) {
    border-right: none; /* Prevent double borders */
}
