.djs-outer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 2rem;
  justify-content: center;
  width: 100%
}

.djs-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #00000055;
  width: 15rem;
  border-radius: 1rem;
  border: 1px solid white;
  margin: .5rem;
  justify-content: space-between;
  transition: transform .05s;
}

.djs-inner:hover {
  transform: scale(1.05);
}

.djs-name {
  font-size: 1.5rem;
  width: 100%;
  text-align: center;
  margin: .5rem 0;
}

.djs-mugshot {
  width: 50%;
  border-radius: 1rem;
}

.djs-job {
  width: 90%;
  margin: .5rem;
  text-align: center;
}

.djs-descr {
  width: 90%;
  margin: 0 1rem;
  text-align: center;
}

.djs-inner div,p {
  width: 100%;
  overflow-wrap: break-word;
}

@media (min-width:801px) {
  .nav-container {
    width: 75%;
  }
  .djs-outer {
    width: 75%;
  }
}

.button {
  border: white 1px solid;
  border-radius: .25rem;
  color:white;
  text-decoration: none;
  padding: 4px;
}
.buttonlink {
  color:white;
  text-decoration: none;
  padding: 4px;
}
.chip {
  padding: 1px;
  margin: 3px;
  border: white 1px solid;
  border-radius: .25rem;
  font-size: .75rem;
}
.btntray {
  position: relative;
  bottom: 0;
}

.project-author {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.project-author img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-right: 5px;
}