a {
  text-decoration: none;
  color: var(--text);
}

.project-box-cont {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.project-box {
  width: 480px;
  padding: 12px;
  min-height: 240px;
  border-style: solid;
  border-color: var(--secondary);
  border-width: 2px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: var(--bg);
  box-shadow: 0px 0px 0px #333;
  transition: box-shadow .1s;
}

/* .project-box:hover {
   box-shadow: 0px 0px 10px #333;
   } */

.pb-image {
  flex-grow: 1;
}

.pb-image > img {
  width: 180px;
}

@media only screen and (max-width: 520px) {
  .project-box {
    width: 85vw;
  }

  .pb-image > img {
    width: 25vw;
  }
}

.pb-info {
  flex-grow: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}

.pb-info > h2 {
  margin: 0;
  padding: 4px 0px 4px 0px;
}

.pb-info > p {
  margin: 0;
  padding: 4px 0px 4px 0px;
}

.pb-but {
  width: 100%;
}

.pb-but > button {
  width: 100%;
}


h2.block-title {
  margin-top: 32px;
}





.cornerfox {
  width: auto;
  position: fixed;
  left: -8px;
  bottom: -6px;
  z-index: 1;
  height: 72px;
}



.layingfox {
  width: auto;
  position: fixed;
  left: -8px;
  bottom: -6px;
  z-index: -1;
  height: 72px;
}

.layingfox > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(90%);
}

.layingfox > img:hover {
  /* filter: brightness(100%); */
}

.walkingfox {
  width: auto;
  position: fixed;
  right: -8px;
  bottom: -6px;
  z-index: -1;
  height: 128px;
}

.walkingfox > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* filter: brightness(80%); */
}

.walkingfox > img:hover {
  /* filter: brightness(120%); */
}



/* foss.html */

.prod-section {
  margin-bottom: 32px;
  width: 100%;
}

@media only screen and (min-width: 1000px) {
  .prod-section {
    width: 70vw;
  }
}

.prod-section > h1 {
  
}
.prod-section > h1 > img {
  max-height: 24px;
}

.prod-list {
  border-style: solid;
  border-color: #444;
  border-width: 0px 0px 0px 4px;
  padding-left: 4px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 20px;
}

.prod {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 12px;
  min-height: 72px;
  /* border-style: solid;
     border-color: var(--secondary);
     border-width: 2px; */
  border-radius: 5px;
  gap: 12px;
  background-color: var(--bg);
}

.prod-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

@media only screen and (min-width: 1000px) {
  .prod-info {
    flex-wrap: nowrap;
  }
}

.prod-img > img {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-img > img {
  max-width: 72px;
  max-height: 72px;
}

.prod-text {
  display: flex;
  flex-direction: column;
}

.prod-text > h2 {
  margin: 0;
  padding: 4px 0px 4px 0px;
}

.prod-text > p {
  margin: 0;
  padding: 4px 0px 4px 0px;
}

.prod-links {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.prod-but {
  min-width: 240px;
}

.prod-but > button {
  width: 100%;
}
