/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
    background-color: #fff;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* END CSS RESET */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0px 0px 0px 0px;
}

.container {
    width: 1400px;
    margin: auto;
}

header {
    background-color: #4dd2ff;
    height: 4em;
    padding: 0px 2em;
}

header .container {
    display: flex;
    flex-direction: row;
    column-gap: 1em;
    height: 4em;
}

header .brand {
    display: inline-block;
    background-color: #333;
    color: #fff;
    font-weight: bold;    
    line-height: 4em;
    transform: skewX(-10deg);    
    box-shadow: 10px 0px 0px #000;
    padding: 0em 2em;
}

header .brand span {
    display: inline-block;    
    color: #fff;
    font-weight: bold;    
    line-height: 4em;
}


header nav {
    margin-left: 1em;
}

header nav ul {
    display: flex;
    column-gap: 2px;
}

header nav ul li {
    background-color: #33ccff;
}

header nav ul li a, header nav ul li a:visited, header nav ul li a:active {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 0em 1em;
    text-transform: uppercase;
    line-height: 4em;
}

header nav ul li a:hover {
    background-color: #33ccff;
}

header nav ul li a.current {
    
}

main {
    padding: 0px 2em;
}

.main-content {
    padding: 25px 0px;
}

h1 {
    font-size: 1.5em;
}

p {
    margin-top: 1.5em;
    line-height: 1.25em;
}

/* Responsive styles */
@media screen and (max-width: 1400px) {    
    .container {
        width: 100%;
    }
}

