a {
  text-decoration: none;
  color: inherit;
  border: none;
}

#header-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#header-details > a {
  padding-left: 2.5rem;
}

.header-details-item {
  transition: ease-in-out 80ms;
}

.header-details-item:hover {
  color: rgb(119, 161, 238);
  cursor: pointer;
}

#project-list-container {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: center;
}

.project-item {
  width: 480px;
  border: solid 3px black;
  color: black;
  background-color: rgb(104, 139, 205);
  padding: 0.8rem;
  border-radius: 0.4rem;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  box-shadow: 6px 6px 0 black;
  margin-bottom: 2rem;
}

.project-item img {
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
}

.project-item-details-container {
  display: flex;
  flex-direction: column;
}

.project-title-links-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.project-title {
  margin: 0;
  color: black;
  font-weight: bold;
}

.description-short {
  padding: none;
}

.hidden-container {
  overflow-y: hidden;
  display: flex;
}

.description-long {
  transition:
    max-height 0.1s ease-in-out,
    transform 0.1s ease-in-out;
  transform: translateY(0);
  max-height: 2000px;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.description-long.hidden {
  transform: translateY(-100%);
  max-height: 0;
  margin: 0;
}

.tech-stack-container {
  display: flex;
  flex-direction: row;
}

.tech-stack-item {
  border: solid 2px black;
  color: black;
  border-radius: 0.3rem;
  padding: 0.4rem;
  margin-right: 0.4rem;
  background-color: rgb(236, 118, 89);
}

.button-container img {
  width: 20px;
  height: auto;
  padding: 0.3rem;
  margin: 0.3rem;
  filter: invert(1);
}

.button-container img:hover {
  background: black;
}

.more-details-button {
  all: unset;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  background-color: rgb(108, 218, 123);
  border: solid 1px black;
  border-radius: 0.2rem;
  box-shadow: 3px 3px 0 black;
  white-space: nowrap;
  transition:
    transform 0.1s ease-in-out,
    box-shadow 0.1s ease-in-out;
  align-self: center;
  margin: 1rem;
}

.more-details-button:hover {
  transform: translate(3px, 3px);
  box-shadow: 0px 0px 0 black;
}

.more-details-button img {
  width: 15px;
  height: auto;
  transition: transform 0.2s ease-in-out;
}

.more-details-button img.point-up {
  transform: rotateZ(180deg);
}
