@charset "UTF-8";
/* CSS Dcoument */
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chelsea+Market&family=Dosis:wght@400;700&display=swap');

@font-face {
    font-family: 'action_manbold';
    src: url('../fonts/Action_Man_Bold-webfont.eot');
    src: url('../fonts/Action_Man_Bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Action_Man_Bold-webfont.woff2') format('woff2'),
         url('../fonts/Action_Man_Bold-webfont.woff') format('woff'),
         url('../fonts/Action_Man_Bold-webfont.ttf') format('truetype'),
         url('../fonts/Action_Man_Bold-webfont.svg#action_manbold') format('svg');
    font-weight: normal;
    font-style: normal;

}

body {
    background-color:#e2bb84;
}

.container {
    margin: auto;
    max-width: 1024px;
    border: 4px solid rgb(86, 52, 0);
    padding: 0 20px 40px;
}

img {
    max-width: 100%;
    border:3px solid rgb(126, 75, 0);
    padding: 5px;
    margin: 5px;
}

::selection {
    color:rgb(209, 202, 141);
    background:rgb(114, 67, 5);
}

::marker {
    font-size: 36px;
    font-family: 'Chelsea Market', cursive;
}

.p-first-cap::first-letter {
    text-transform:capitalize;
}

p, ul {
    color:rgb(33, 114, 146);
    font-family: Arial, Helvetica, sans-serif;
}

.pad-list {
    margin: 200px;
}

ol {
    list-style-type:lower-alpha;
}

h1 {
    color:hsl(36, 82%, 85%);
    background-color:rgb(86, 52, 0);
    font-family: 'Chelsea Market', cursive;
    font-size: 3em;
    text-align: center;
    margin: 0 0 25px 0;
}

h2 {
    font-family: 'action_manbold';
    font-size: 150%;
    color:rgb(33, 114, 146);
    font-size: 1.75em;
}

h3 {
    font-family: 'action_manbold';
    font-size: 130%;
    color:rgb(33, 114, 146);
    text-align: center;
    font-size: 1.5em;
    margin: 5px;
    padding: 10px;
    border-top: 3px solid rgb(86, 52, 0);
}

h4 {
    font-family: 'action_manbold';
    color:rgb(33, 114, 146);
    font-size: 1.60em;
    margin: 3px;
    padding: 5px;
    border-top: 1px solid rgb(86, 52, 0);
}


nav a {
    text-decoration: none;
    font-size: 1.5em;
}

.brown-bg {
    background-color:rgb(212, 159, 79)
}

nav li a:link, nav li a:visited {
    color: rgb(163, 19, 91)
}

nav li a:hover, nav li a:focus {
    color:rgb(170, 97, 134)
}

nav ul {
    list-style-type: none;
}

nav li {
    display: inline-block;
    margin-right: 15px;
}

.cocoa-health-list {
    /* using png instead of gif because png better supports transparency, when converting to gif, result looked really bad */
    list-style-image: url(../images/cocoa-ul.png);
    list-style-position: outside;
}

footer {
    border: 2px solid rgb(86, 52, 0);
    padding-inline-start: 6px;
    background-color:rgb(114, 67, 5);
    text-align:center;
    margin: 0 250px;
}

footer > p {
    color:hsl(36, 87%, 78%);
    font-weight:bolder;
}

img.right {
    float: right;
    margin: 0 0 15px 15px;
}

img.left {
    float: left;
    margin: 0 15px 15px 0;
}

.clear {
    clear: both;
}