/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */



 html {
    background-color: beige;
    font-size: 19px;
    font-family: 'Gill Sans MT';
    color: beige;
}


h1,h2,h4 {
    color: #663300;
    text-shadow: 1px 1px 2px black;
} 

h1 {
    font-size: 50px;
}

h3 {
    color: gold;
}

h4 {
    font-size: 25px;
}

a {
    color: lightgreen;
    text-decoration: none;
}

a:hover {
    color: darkolivegreen;
}

ul, ol {
    margin: 9px 45px
}

header, footer {
    margin: 0 50px;
    text-align: center;
    padding: 20px;
    background-color: beige;
    border-radius: 3px;
    border: dashed 2px #663300;
}


.flex-container {
    display: flex;
    height: 100%;
}

.nav {
    padding: 0;
    width: 21%;
    background-image: url('separator.png');
    background-repeat: repeat-y;
    background-position: top right;
    height: 100%;
    position: fixed;
    z-index: 10;
}

.nav a, h2 {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.nav h2 {
    padding: 10px;
    margin: 25px 43px 25px 8px;
}

.separator a {
    margin: 24px 60px 24px 25px;
    padding: 13px;
    background-color: darkolivegreen;
    border-radius: 3px;
    color: white;
    text-decoration: none;
}

.separator a:hover {
    background-color: brown;
    color: yellow;
}

.separator {
    width: 84%;
    min-height: 100%;
    overflow: auto;
    
}

.content {
    width: 80%;
    padding: 20px;
    position: absolute;
    background: url(tiles.png);
    right: 0;
    min-height: 100%;
}

article {
    background-color: brown;
    margin: 20px 50px;
    padding: 15px 0 28px;
    border-radius: 3px;
    border: dashed 2px gold;
}

article p {
    padding: 18px;
}

article h3 {
    padding: 10px
}
                    