/* portfolio-website.html styles */

.container {
  display: flex;
  gap: 20px;
}

/* Scope project images to avoid affecting global images (like navbar selfie) */
.projecten img {
  width: min(500px, 100%);
  margin: 20px;
}

@media only screen and (max-width: 800px) {
  .container {
    flex-direction: column;
  }
}