@import url('https://fonts.googleapis.com/css?family=Quattrocento');
* {
    box-sizing: border-box;
    font-family: 'Quattrocento', serif;
}
body {
    font-family: Verdana, sans-serif;
    margin:0px auto;
}

body::-webkit-scrollbar {
    width: 1em;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
 
body::-webkit-scrollbar-thumb {
  background-color: #0b0b0b;
  outline: 1px solid slategrey;
}


header {
    color:white;
    background: #0b0b0b;
    margin:0px auto;
    padding: 1em;
    font-weight: bold;
    text-align: center;
}

header img {
    width: 300px;
}


/* Start of News Feed */

section.newsFeed {
    margin: 0 auto;
    padding: 1em;
    background-color: rgba(192,56,116,1);
    max-height: 300x;
    min-width: 300px;
}

section.newsFeed h1 {
    color:rgba(255,255,255,1);
    text-align: center;
    margin: 0 auto;
    width: 30%;
    font-size: 36px;
    font-style: italic;
    border-bottom: 2px dashed white;
}

section.newsFeed p {
    color:white;
    max-width: 800px;
    height: auto;
    text-align: center;
    margin: 0 auto;
    font-size: 18px;
    word-wrap: normal;
    padding: 1em;
}

/* End of News Feed */




div.col {
    display: flex;
    flex-basis: 30%;
    flex-direction: row wrap;
    flex
}

/* FOOTER */
footer {
    background-color:#282d32;
    width: 100%;
    padding: 2em;
    height: auto;
    margin:0 auto;
}

footer ul {
    list-style: none;
    display: inline-block
}

footer li {
    color:white;
}

footer a {
    font-size: 13px;
}

footer h4 {
    color:dimgray;
}

.column-layout {
    max-width: 1600px;
    margin: 40px auto 0 auto;
    line-height: 1.65;
    padding: 20px 50px;
    display: flex;
    text-align: center
}


div.col-1{
    order: 1;
    flex:1;
}

div.col-2 {
    order: 2;
    flex:1;
}

div.col-3 {
    order: 3;
    flex:1;
}

div.col-4 {
    order:4;
    flex:1;
}

div.col-5 {
    order:5;
    flex:1;
}

footer img {
    text-align: center;
    margin: 0 auto;
    width: 300px;
    height: auto;
    padding: 1em;
}

div.social  {
    font-size: 20px
}

div.social a {
    color: rgba(255,255,255,.6);
    background-color:transparent;
    text-align: center;
    text-decoration: none;
    border:1px solid rgba(255,255,255,.6);
    border-radius: 15px;
    -moz-border-radius: 15px;
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    outline:none;
}

div.social a:hover {
    color:gray;
    background-color:rgba(255,255,255,1);
    border:1px solid rgba(255,255,255,1);
}


































