/* Global Styles  */
html {
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
  
  margin: 20;
}

/* start navigation section */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #008ae6;
	position: fixed;
	top: 0;
	width: 100%;
}

nav li {
    float: left;
	border-right: 1px solid #bbb;
}

nav li:last-child {
	border-right: none;
	float: right;
}

nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
	text-transform: uppercase;
}
/* Change the link color to #111 (black) on hover */
nav li a:hover {
    background-color: #111;
}
.active {
    background-color: #4CAF50;
}

/* end navigation section */

main  {
  display: inline-block;
  padding: 15px 20px;
  text-decoration: none;
  font-weight: 700px;
}



.content-wrap {
  max-width: 950px;
  margin: 0 auto;
  padding: 50px;
  overflow: auto;
  padding: 50px 60px;
}
.column-narrow {
  width: 30%;
  float: left;
}

.column-wide {
  width: 70%;
  float: left;
  padding-left: 20px;
}
.uppercase {
  text-transform: uppercase;
}

h1 {
  font-size: 40px;
}
h2 {
  font-size: 20px;
  margin-top: 0;
}
h3 {
  margin: 0;
}


a {
  /* color: #i84dc9; */
}
a:hover {
  text-decoration: none;
}

header {
  padding-top: 10px;
  position: relative;
}
header, footer {
	font-size: 8 pt;
}

.profile-img {
  border-radius: 50%;
}


