/* Minimal CSS Reset */
html {box-sizing: border-box; font-size: 16px;scroll-behavior: smooth;}
*:before, *:after { box-sizing: inherit;}
body {font-family: Arial, Helvetica, sans-serif;}
body, p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
p { margin: 0; line-height: 1.6em; font-size: 1em; padding-bottom: 1.5em;}
img {max-width: 100%; height: auto;}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, main, nav, section {
  display: block;margin: 0;padding: 0;
}
/* End reset */


/* Add a gray background color with some padding */
body {
  font-family: Arial, helvetica, sans-serif;
  background: #cfd5de;
  color: #555;
  padding: 1em;
}
a {
  color: #1D68AB;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

ol {
  line-height: 1.5em;
}
/* Centered container, max width 1200px */
.wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    border: 2px solid #fff;
    border-radius: 10px;
    background: #eaeef2;
}

/* Full-width sections inside the container */
.header,
.content,
.footer {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* Simple styling so you can see the layout */
.header {
    background: #333;
    background-image: url(../img/header-bg6.jpg);
    color: #fff;
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.header h1 {
  margin: 0.5em 0 0 2em;
  color: ##2b7edc;
  font-size: 3.2em;
  text-shadow: 0 2px 2px #0E3E68;
    }
.header p {
   font-size: 1.3em;
   font-weight: bold;
   margin: 0 0 0 5em;
   letter-spacing: 0.1em;
 }
h2,h3,h4 {
  text-shadow: 0 2px 0 #FFFFFF;
}

h2,h3,h4 {
  color: #555;
  margin-bottom: 1em;
}

h2 {
  font-size: 2em;
}
h3 {
  font-size: 1.5em;
}
.content {
    background: #eaeef2;
}
p.important {
      color:rgb(255,80,0);
      font-style:italic;
      text-transform:uppercase;
    }

.code {
  background: url(../img/bgcode.png);
  border: 1px dotted #AAA;
  color: #444;
  display: block;
  font: normal 1em "Lucida Sans Unicode",serif;
  margin: 0 12px;
  padding: 8px 10px;
  white-space: pre;
}

.top {
     padding-right: 1em;
 }    
.footer {
    background: #cfd5de;
    color: #555;
    text-align: center;
    border-radius: 10px;
    text-shadow: 0 1px 0 #FFFFFF;
}

