.content {
  grid-template-columns: 0 1fr 0;
}

.all-makes {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background-color: white;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.3);
  padding: 30px;
  margin: auto;
}

.all-makes a {
  display: flex;
  position: relative;
  padding: 4px 0;
  border-bottom: 1px solid lightgray;
  cursor: pointer;
  color: var(--schrift);
  text-decoration: none;
}

.all-makes > div:hover {
  background-color: #b9daff;
}

.all-makes > div:nth-last-child(-n+11){
  margin-right: 0;
}

.all-makes > .make.block-char-end {
  margin-bottom: 20px;
}

.make span {
  width: 115px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 5px;
}

.all-makes span.char {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.make img {
  height: 30px;
}

.all-makes span.char + span.char {
  margin-top: 15px;
}

@media screen and (min-width: 30.0625em) {
  .all-makes {
    height: 621px;
    width: 65%;
  }

  .all-makes a {
    margin-right: 35px;
  }
}