/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling */
body {
    font-family: "Lucida Sans Unicode", sans-serif;
    line-height: 1.4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
}

.header {
    background: #FCD9CE;
    color: #2C2E35;
    padding: 10px 0;
    text-align: center;
}

.header table {
    width: 100%;
}

.header table th {
    width: 90%;
}

.header table td{
    width: 10%;
}

.header img {
    width: 100%;
    min-width: 55px;
}

.navbar {
    background: #DB3B34;
    font-weight: bold;
    padding: 5px 0;
    position: sticky;
    top: 0;
}

.navbar ul {
    list-style: none;
    text-align: center;
    postion: fixed;
    top: 0;
}

.navbar li {
    display: inline;
    margin: 0 10px;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    padding: 10px 10px;
}

.section {
    padding: 20px 0;
    text-align: left;
}

.section div {
    background: #DEEDDE;
}

.section h2, .section h3, .section p {
    margin-block: 10px 0;
}

.section table {
    display: inline-block;
    min-width: 310px;
    max-width: 49%;
}

.section table th {
    width: 66.66%;
    padding: 3px;
}

.section table td {
    width: 33.33%;
    padding: 3px;
}

.section h6 {
   text-indent: 1.5em;
}

.section img {
    width: 100%;
}

.footer {
    background: #FCD9CE;
    color: #2C2E35;
    padding: 10px 0;
    text-align: center;
}

.footer a {
    color: #000;
}
