* {
	margin: 0;
}

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

h1 {
	position: absolute;
	color: white;
  vertical-align: center;
  font-family: 'rajdhani';
}

#hero img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  overflow: hidden;
}
h1:hover	{
  text-shadow
}
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: gray;
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: column;
}

.card {
	width: 100%;
  height: 150px;
  display: flex;
}

.card-left {
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  width: 35%;
  background-color: #3e20df;
  box-shadow: 0 0 2px black inset;
}
.card-right {
  display: flex;
  height: inherit;
  align-items: center;
  justify-content: center;
  width: 65%;
  background-color: #0089bb;
  box-shadow: 1px 0 2px black inset;
  font-family: 'rajdhani';
  font-size: 25px
}	.card-right ul li {
	font-size: 20px;
  display: block;
}

.card-right p {
	padding: 10px
}