

* {
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', serif, sans-serif;
  text-align: center;
}

header {
  background-color:rgb(220, 220, 220);
  height: 150px;
  display: flex;
  font-size: 1.5rem;
}

nav {
  width: 80%;
  margin: auto;
}

nav ul {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
}

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

.portfoliocontainer {
  margin: auto;
  width: 80%;
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
figure {
  padding: 3rem;
}

footer {
  width: 100%;
  background-color:rgb(220, 220, 220);
  height: 250px;
}

