.banner {
  width: 100%;
  /* Prevent layout shift while loading image. */
  height: calc(100vw / 3);
}

#banner-copyright {
  float: right;
  margin-right: 1rem;
  margin-left: 1rem;
  font-size: xx-small;
}

.project-header {
  margin-bottom: 20px;
}

.project-header-info {
  margin-top: 2px;
  font-size: small;
}

.project-header-title {
  border-bottom: 1px solid rgb(238, 238, 238);
}

.project-header-license {
  float: right;
}

.downloads {
  border: 1px solid #ccc;
  border-radius: 4px;
}

.downloads-header {
  background: #f5f5f5;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  padding-left: 10px;
  display: inline-block;
  width: 100%;
  position: relative;
}

.downloads > .downloads-header:first-child {
  border-top: none;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.downloads-content {
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
}

.downloads-item {
  background: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px;
  margin: 3px;
  animation-fill-mode: forwards;
  text-decoration: none !important;
  color: black !important;
}

@keyframes border-fade-in {
  0% {

  }
  100% {
    border-color: #999;
    background: #efefef;
  }
}

@keyframes border-fade-out {
  0% {
    border-color: #999;
    background: #efefef;
  }
  100% {

  }
}
