/* Start of CMSMS style sheet 'Layout: Left sidebar + 1 column' */
/*****************
browsers interpret margin and padding a little differently,
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
    background-color: #000;
    color: #333;
    margin: 1em;
    font-family: 'Roboto Condensed', sans-serif;
}

h1.title {
    font-size: 3em;
    margin-top: 1em;
    color: #ddd;
}
/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit;
   color: #ddd;
   font-size: 2em;
}



/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: #385C72;
}

/*****************
basic layout
*****************/


/* center wrapper, min max width */
div#pagewrapper {
   border: 1px solid black;
   margin: 0 auto;       /* this centers wrapper */
   background-color: #000;
   background: #000 url(mariustschirky_header_chue.jpg) no-repeat 0 12px;
   color: white;
   background-size: contain;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/

.embed-responsive {
    margin-top: 20vh;
    margin-bottom: 20px;
}


 div#content {
   margin: 4em auto 2em 0;   /* some air above and under menu and content */
}

div#main {
   margin-left: 22%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 2%; /* and some air on the right */
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #444;
   background-color: #000; /* same bg color as in header */
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}
