::selection {
  background: var(--primary);
  color: var(--white);
}

.left.item-image {
  margin-right: 10px;
}

h1 {
  font-size: 2rem;
  font-weight: 800;
  background: -webkit-linear-gradient(var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.item-content, .item-page {
  font-size: 1.5rem;
  font-weight: 300;
}

.item-content, .item-page video {
  display: flex;
  width: 100%;
   border-radius: 1rem;
}

.container-header {
 background-color: var(--white);
 background-image: inherit;
}

.mod-menu {
  flex-direction: row;
  gap: 10px;
}

.container-top-a .card {
  border-color: var(--primary);

}

.container-top-a .card a {
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 12px;
  color: var(--white);
  background-color: var(--primary);
}

.container-top-a .card .active a {
  background-color: var(--secondary);
  text-decoration: none;
}
.table>:not(caption) .list-title{
  background-color: var(--white);
  border-bottom: 3px solid var(--primary);
}
.table>:not(caption) .list-title a {
 background: -webkit-linear-gradient(var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 800;
}

footer.footer{
  margin-top: 0;
  background-color: var(--primary);
  background-image: inherit;
}
footer.footer .mod-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
footer.footer .mod-list li>a {
    font-weight: 800;
    text-decoration: none;
    border: 1px solid white;
    padding: 10px;
}

.random-img-frontpage .mod-randomimage {
  margin: 20px 0px 50px 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.random-img-frontpage .mod-randomimage img {
  border-radius: 1rem;
  flex: 1;
  max-width: 100%;
}

@media screen and (min-width: 1000px) {
  h1 {
    font-size: 4rem;
  }
  .random-img-frontpage .mod-randomimage img {
    max-width: 800px;
    }
}