body {
  font-family: arial;
  margin: 0 0 2em 0;
}
path {
  stroke:red !important;
}
#projects {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  gap: 18px;
}
.projectintro {
  max-width: 90%;
  margin-top: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 12px;
  background: #666;
  color: white;
  line-height: 1.4;
}
.projectintro .typelinks {
  text-align: center;
}

.project-type {
  color: #2564e1;
  font-size: 1.7em;
  margin: 1em auto 0 auto;
}

.projectintro a {
  color: white;
}

.project {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 14px 12px;
  width: 90%;
  background: white;
}
.project h2 {
  color: #666;
  font-size: 1.4em;
  margin: 1em 0 0.6em 0;
  text-align: center;
}

.project p, .projectintro p  {
  font-size: 0.95em;
  line-height: 1.5em;
}

.pic {
  width: 100%;
}

.pic.frame img, .pic img {
  border: 14px solid #ddd;
  border-radius: 8px;
  margin: 0 auto;
  display: block;
  max-width: 400px;
}

@media (width < 554px) {
  .pic {
    max-width: 90%;  
  }
  .pic img {
    width: 100%;
  }
}

.projects p {
  margin: 0.3em 0 0.3em 0;
}
.showbutton {
  padding: 2px 4px;
  margin: 0.5em 0 0 0;
  display: block;
  width: max-content;
  border: 2px solid rgba(165,192, 255, .9);
  border-radius: 6px;
  cursor: grab;
}
.showbutton::before {
  content: "➕ more";
}

.show.showbutton::before {
  content: "➖ less";
}
.continue {
  display: none;
  
}
.show .continue {
  display: block;
  padding: 0;
}
.continue p {
  margin-top: 0;
}
/* #projects a.ext::after {
  content: '↗ ';
} */

#projects a.ext {
    background-image: url('../img/ext-link.svg');
    background-position: center  right;
    background-repeat: no-repeat;
    background-size: 0.7em;
    padding-right: 0.9em;
}
