/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */

html {
    font-size: 62.5%;
}

body {
    font-size: 1.8em;
    /* currently ems cause chrome bug misinterpreting rems on body element */
    line-height: 1.6;
    font-weight: 400;
    font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000000;
    background-color: #DEB887;
}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */

a {
    -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    border-bottom: dotted 1px;
    color: #000000;
    text-decoration: none;
}

a:hover {
    border-bottom-color: #ffffff;
    color: #ffffff !important;
}


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */

ul {
    margin: 0;
}

ol {
    list-style: decimal inside;
}

ol,
ul {
    padding-left: 2.0em;
    margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: 1.5rem 0 1.5rem 3rem;
}

li {
    margin-bottom: 1rem;
}


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

button,
.button {
    margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
    margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
    margin-bottom: 2.5rem;
}


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* Self Clearing Goodness */

.container:after,
.row:after,
.u-cf {
    content: "";
    display: table;
    clear: both;
}

img {
    border: 0;
    display: block;
    position: relative;
    max-width: 100%;
    height: auto;
}


/* Header */

#header {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    padding: 0 auto;
    position: relative;
    display: block;
}

#header h1 span {
    margin: 0;
    padding: 0;
    visibility: hidden;
    width: 1px;
    height: 1px;
    display: block;
}


/* Footer */

#footer {
    font-size: 80%;
    text-align: right;
    margin: 8em auto 0 auto;
    padding: 0;
}


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.container {
    position: relative;
    background-color: #DEB887;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0.1em 1em;
    box-sizing: border-box;
}


/* For devices larger than 400px 
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}*/


/* For devices larger than 750px */

@media (min-width: 750px) {
    body {
        background-color: #D2691E;
    }
    ul {
        margin: 0 0 0 2em;
    }
    .container {
        margin: 3em auto;
        padding: 0 2em 0.2em 2em;
        width: 85%;
        border: 2px solid #000000;
        border-radius: 0.375em;
        -webkit-box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.75);
        box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.75);
    }
}


/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */

@media (min-width: 400px) {}


/* Larger than phablet (also point when grid becomes active) */

@media (min-width: 550px) {}


/* Larger than tablet */

@media (min-width: 750px) {}


/* Larger than desktop */

@media (min-width: 1000px) {}


/* Larger than Desktop HD */

@media (min-width: 1200px) {}
