/*ABOUT BRANDS TITLE*/
.aboutbrandstitle h1 {
  font-family: "Space Mono",monospace;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  line-height: 60px;
}

.aboutbrandstitle h2 {
  font-family: monospace;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.aboutbrands {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Spalten, gleich breit */
  grid-template-rows: auto auto auto;    /* 3 Reihen (Höhe nach Inhalt) */
  gap: 40px;                             /* Abstand zwischen den Boxen */
  padding: 40px;
  justify-items: center;                 /* zentriert die Boxen horizontal */
  align-items: flex-start;    
}

.aboutbrandsbox {
  display: flex;
  flex-direction: column;
  width: 450px;
  border: 5px solid black;
  justify-content: center;
  align-items: center;
  min-height: 620px;
}

.aboutbrandsbox img {
  width: auto;
  height: 250px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.aboutbrandsbox h1 {
  font-family: "Space Mono", monospace;
  font-size: 30px;
  border-bottom: 5px dashed black;
}

.aboutbrandsbox p {
  font-family: monospace;
  font-size: 20px;
  align-self: flex-start;
  border-top: 5px solid black;
  padding: 5px;
  width: 100%;
}

/*BUTTON*/
.buttoncenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.backagbbutton {
  font-size: 30px;
  font-family: "Space Mono", monospace;
  color: black;
  text-decoration: none;
  border: 5px solid black;
  width: fit-content;
  padding: 10px;
  border-radius: 8px;
  background-color: rgb(214, 181, 255);
}