

p {
font-size: 18px;
font-family: 'Jost', sans-serif;
/*font-family: 'Open Sans', sans-serif;*/
padding-right: 200px;
padding-left: 70px;
margin: 30px 0px;

}

h1 {
font-family: 'Bree Serif', serif;
color: black;
font-size: 3em;
}

h2 {
/*font-family: 'Jost', sans-serif;*/
font-family: 'Bree Serif', serif;
color: black	;
padding-left: 70px;

}

h5 {
font-size: 18px;	
font-family: 'Jost', sans-serif;
padding-left: 70px;
/*color: #ff612b;*/
color:#fa255e;
line-height: 12px;
margin: 20px 0px;
}

h3 {
/*font-style: italic;*/
font-size: 40px;
font-family: 'Jost', sans-serif;
color:#fa255e;
padding-left: 70px;
line-height: 30px;
margin: 80px 10px 0px 0px; /*top, bottom, left, right*/
}

.images
{
  padding-right: 150px;
  padding-left: 70px;
}

.projectLink {
font-family: 'Jost', sans-serif;
padding-left: 70px;



}

.nav-item 
{
	padding-left: 0px;
}

.tagline {
font-size: 26px;
/*font-family: 'Bree Serif', serif;*/
font-family: 'Jost', sans-serif;
color: black;	
/*padding-left: 210px;*/
text-align: center;
margin: 0px auto;
}

.AboutMe {
  font-size: 18px;
font-family: 'Jost', sans-serif;
padding-right: 20px;
padding-left: 10px;
margin-left: 0px;
}

.AboutMeTitle {
	font-family: 'Bree Serif', serif;
	color: black	;
	padding-left: 10px;
}


.firstProject {
	margin: 0px 0px;
}

.lastImage {
	margin-bottom: 80px;
}

/*project links*/
a {
	text-decoration: none;
	font-family: 'Jost', sans-serif;
	color: #20c3a6;
	font-weight: bold;
}

a:hover {
	color:#fa255e;
}


* {
  box-sizing: border-box;
}

/* Style the body */
body {
  margin: 0;
}

/* Header/logo Title */
.header {
  padding: 60px;
  text-align: center;
  background: #eae22b ;
  color: white;
}

/* Increase the font size of the heading */
.header h1 {
  	font-family: 'Bree Serif', serif;
	color: black;
	font-size: 5em;
	margin: 30px;
}

/* Sticky navbar - toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport - then it "sticks" in place (like position:fixed). The sticky value is not supported in IE or Edge 15 and earlier versions. However, for these versions the navbar will inherit default position */
.navbar {
  overflow: hidden;
  background-color: #f05373 ;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  font-family: 'Jost', sans-serif;
  font-size: 20px;

}

/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 20px 30px;
  text-decoration: none;
  font-weight: normal;
}


/* Right-aligned link */
.navbar a.right {
  float: right;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #20c3a6  ;
  color: white;
}

/* Active/current link */
.navbar a.active {
  color: white;
}

/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background-color: #70dfa4 ;
  padding: 20px;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: white ;
  padding: 20px;
}


/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background-color: #20c3a6 ;
}

.footer h2 {
	font-family: 'Jost', sans-serif; 
	margin: 20px 0px;
	padding: 0px;
	font-weight: normal;
  font-size: 25px; 
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}