*#page-container
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 10px;
  background-color: #6f4e37  ;
  color: #0BFE6C;
}

/* Header/Blog Title */
.header {
  padding: 20px;
  text-align: center;
  background: #deb887 ;
  font-family: 'Bebas Neue', cursive;
}

.header h1 {
  font-size: 50px;
  color: #FFE4B5;

}
.header p {
  font-size: 36px;
  color: #FFE4B5;
		 }


nav {
  overflow: hidden;
  background-color: #FFE4B5 ;
}


nav a {
  float: left;
  display: block;
  color: #000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-family: 'Bitter', serif;
}

/* Change color on hover */
.topnav a:hover {
  color: #C2B280;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 50%;
}

.blogcard {
  background-color: #ffd1dc;
  padding: 50px;
  margin-top: 20px;
  margin-bottom: 10px;
  height: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  color:#000;
}

.text {
  font-size: 40px;
  color:#000;
}
/* Right column */
.rightcolumn {
  width: 50%;
  padding-left: 20px;
    float: right;
}

/* Add a card effect for articles */
.card {
  background-color: #deb887   ;
	padding: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-top: 20px;
  margin-bottom: 20px;
  color: #FFE4B5;
}

p
{
  color:#000;
}

h2{
  font-family: 'Bebas Neue', cursive;
  font-size: 35px;
  color:#000;
   text-decoration: overline  solid 5px;
}
h5{
  font-family: 'Bitter', serif;
  color: #000;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


div.container {
  text-align: center;
  padding: 10px 20px;
  color: black;
}

.topnav {
  overflow: hidden;
  background-color: #FFE4B5 ;
}

.topnav a {
  float: left;
  display: block;
  color: #000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-family: 'Bitter', serif;
}

/* Change color on hover */
.topnav a:hover {
  color: #C2B280;
}


.button {
	border: none;
	color: black;
	background-color: #98fb98;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 14px;
		}
.example
{
  
  padding: 20px;
  margin: 20px;
  border: 9px double black;
}

.project {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #deb887;
  margin-bottom: 5vh;
  padding: 3vh 3vw;
  padding-top: 5vw;
  text-align: center;
  max-width: 75vw;
  border-radius: 2%;
}

.project img {
 max-width: 80%;
 border-radius: 2%;
}

#content p, .project a {
  text-align: center;
 	color: black;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  font-size: 3vh;
}


/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* 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) {
  .topnav a {
    float: none;
    width: 100%;
  }
}


/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background: #deb887 ;
  margin-bottom: 60px;
  color: #FFE4B5
}