* {
	margin: 0;
}

#hero {
	display: flex;
	justify-content: center;
  align-items: center;
}

h1 {
	position: absolute;
	color: white;
  vertical-align: center;
  font-family: 'Poiret One';
  font-size: 24px;
}

h1:hover {
	text-shadow: 0px 0px 5px white;
}

#hero img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  overflow: hidden;
}

li {
	display: inline;
  padding: 0 10px;
}

ul {
  width: 60%;
	margin: auto;
	padding: 0px;

}

.navbar {
	width: 100%;
  height: 40px;
  background-color: #29b8ff;
  text-align: center;
  display: flex;
}

a {
	text-decoration: none;
  color: inherit;
}

a:hover {
	color: white;
}

#portfolio {
	background-color: #1f1f1f;
  width: 100%;
  height: 600px;
  display: flex;
}

.card {
	width: 100%;
  height: 150px;
  display: flex;
}
.card-left {
	display: flex;
  justify-content: center;
  align-items: center;
	height: inherit;
  width: 35%;
  background-color: #FAF7E5;
  box-shadow: 3px 0px 3px gray inset;
  font-family: 'Poiret One';
  border-right: 2px groove #fdfcf5;
}
.card-right {
  display:flex;
	justify-content: left;
	align-items: center;
	height: inherit;
  width: 65%;
  background-color: #fdfcf5;
  box-shadow: -3px 0px 3px gray inset;
  font-family: 'Poiret One';
}

.card-right p {
	padding: 10px;
}



