body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

nav {
  width: 100%;
  min-height: 3em;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 1em;
       column-gap: 1em;
  justify-content: center;
  align-items: center;
  background-color: black;
}
nav a {
  color: white;
  font-size: 2em;
  font-family: Arial, Helvetica, sans-serif;
}
nav a:hover {
  transform: scale(1.1, 1.1);
}
nav a:visited {
  color: white;
}

#projects {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
  margin: 1em;
}

#jpp {
  color: red;
}
#jpp:visited {
  color: red;
}

footer {
  width: 100%;
  position: relative;
  bottom: 0;
  background-color: black;
  padding: 1em;
}
footer a {
  color: white;
  font-size: 1em;
  font-family: Arial, Helvetica, sans-serif;
}
footer a:hover {
  transform: scale(1.1, 1.1);
}
footer a:visited {
  color: white;
}

#footer-nav {
  margin: 1em;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 1em;
       column-gap: 1em;
}/*# sourceMappingURL=main-style.css.map */