/* H1 Style */
h1 {
	color: #8a8c8f;
	text-align: center;
	 font-family: 'majesti_bannerbold';
    src: url('majesti-banner-bold-webfont.woff2') format('woff2'),
         url('majesti-banner-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: bold;

}


body {
	background-color: #41393d;
	text-align: center;
	 font-family: 'majesti_bannerbold';
    src: url('majesti-banner-bold-webfont.woff2') format('woff2'),
         url('majesti-banner-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: bold;
}


* {
  box-sizing: border-box;
}


/* Header/logo Title */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: lem 0;
  width: 100%;
  text-align: center;
  background: #41393d;
  color: white;
  
}

/* Style the top navigation bar */
.navbar {
  display: flex;
  background-color: #d4a18d;
  justify-content: center;
}

/* Style the navigation bar links */
.navbar a {
  color: white;
  padding: 14px 25px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
}

/* Changes color of navigation bar links when hovered over */
a:hover, a:active {
  background-color: #be1e2d;
}

/* Column container */
.row {  
  display: flex;
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  flex: 30%;
  background-color: #8a8c8f;
  padding: 20px;
}

/* Main column */
.main {
  flex: 70%;
  background-color: white;
  padding: 20px;
}

/* Fake image, just for this example */
.fakeimg {
  background-color: #d4a18d;
  width: 100%;
  padding: 20px;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
}

/* 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, .navbar {   
    flex-direction: column;
  }