/*

.card-ads {
  align-items: center;
  background: var(--primary);
  background-size: cover;
  background-position: center;
  border: 5px solid white;
  box-sizing: border-box;
  color: white;
  display: flex;
  flex-grow: 0;
  font-family: sans-serif;
  font-size: 12px;
  font-weight: bold;
  height: 50%;
  justify-content: center;
  outline: 5px solid white;
  text-shadow: 0 0 5px black;
}
.card-ads:nth-child(6n-5) {
  height: 25%;
}
.card-ads:nth-child(6n-4) {
  height: 75%;
}
.card-ads:nth-child(6n-3) {
  height: 50%;
}
.card-ads:nth-child(6n-2) {
  height: 50%;
}
.card-ads:nth-child(6n-1) {
  height: 66.666%;
}
.card-ads:nth-child(6n) {
  height: 33.333%;
}


.background {
  align-items: center;
  background: white;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  width: 100vh;
}
*/