* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	overflow: scroll; /* Show scrollbars */
}

.header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	padding: 20px 50px;
	background-color: #502b39;
	display: flex;
	justify-content: space-around;
	align-items: center;
	z-index: 100;
}

.logo-container {
	display: flex;
	justify-content: left;
	align-items: left;
	text-align: left;
	flex: 2;
}

.logo {
	font-size: 32px;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
}

.navbar {
	display: flex;
	width: 768px;
	margin-right: 5%;
	justify-content: flex-end;
}

.navbar a {
	font-size: 18px;
	color: #fff;
	font-weight: 400;
	text-decoration: none;
	margin-left: 40px;
	text-align: center;
	align-content: center;
}

.mobile-menu-icon {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding-left: 5%;
}

.bar {
	width: 25px;
	height: 3px;
	background: #fff;
	margin: 4px 0;
}

@media (max-width: 950px) {
	.navbar {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 60px;
		left: 0;
		background: #502b39;
		width: 100%;
		text-align: center;
	}

	.navbar a {
		margin: 10px 0;
	}

	.mobile-menu-icon {
		display: flex;
	}
}

.header.mobile-menu-open .navbar {
	display: flex;
}

.main {
	padding: 2em 50px;
	flex: 1;
	margin-left: min(150pt, 8%);
	margin-right: min(150pt, 8%);
}

.main h1 {
	color: #502b39; 
	font-size: 27pt;
}

.main p {
	color: black;
	font-size: 12pt;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

.footer {
	background-color: #f0f0f0;
	padding: 20px 0;
	text-align: center;
	align-content: center;
}
.footer a {
	color: #333;
	margin: 0 10px;
	text-decoration: none;
}
  .pic-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: auto;
    width: 100%;
    height: auto;
    /*border: 2px dotted rgb(96 139 168);*/
    }
  /* center image */
  img {
    width: 100%;
    height: auto;
    display: block;
  	margin-left: auto;
    margin-right: auto;
  }      
  /* Create two unequal columns sitting next to each other*/
	.col {  
  	display: flex;
  	flex-wrap: wrap;
    width: auto;
    /*justify-content: center;*/
    /*align-items: center;*/
    overflow: auto;
    /*border: 2px dotted rgb(96 139 168);*/
		}
	/* Left side */
	.side {
  	flex: 70%;
  	background-color: white;
 	padding: min(40px, 5%);
    /*border: 2px dotted rgb(96 139 168);*/
		}
  /* Right side */
	.mcol {
  	flex: 30%;
  	background-color: #A4A4A470; /*last two values=alpha*/
    margin: auto;
    /*align-items: center;*/
    /*justify-content: center;*/
    text-align: center;
    padding-top: 40px;
    p {font-size: 20px;}
    /*border: 2px dotted rgb(96 139 168);*/
		}