body {
	color: #024249;
}
.row-flex {
	display: flex;
	/*width: 95%;*/
	flex-direction: row;
}

.column-flex {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-top: 15px;
}

.col-20 {
	flex: 20%;
}

.col-80 {
	flex: 80%;
}

#sidebar {
	background-color: #FA7F72;
	height: 620px;
	position: fixed;
	width: 200px;
}

#content {
	 margin-left: 200px;
	 padding: 5px;

}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-top: 50px;

}

li a {
  display: block;
  color: white;
  padding: 10px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

/* Change the link color on hover */
li a:hover {
  background-color: #555;
  color: white;
}

#portfolio li {
	background-color: #ededed;
	border: 1px solid white;
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#portfolio li a{
	color: #024249;
}

#portfolio li a:hover{
	color: white;
}

.active-li {
	background-color: #555 !important;
}
.active-li a {
	color: white;
}

#title {
	color: white;
	padding: 16px;
	background-color: #389393;
	text-align: center;

}

#landing-page {
	background-color: #EBEBEB;
	clip-path: polygon(0 0, 100% 0%, 100% 93%, 0% 100%);
	padding: 40px;
}
#portfolio {
	background-color: #16817A;
	clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
	padding: 50px;
	color: white;
}