/*TITLE*/
.projectstitle h1 {
  font-family: "Space Mono",monospace;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}


/*DISCLAIMER*/
.disclaimer {
  margin-top: 20px;
  margin-bottom: 20px;
}

.disclaimercontent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 5px solid red;
  background: white;
  color: red;
  width: 800px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

/*BUTTON*/
.aboutaruran {
  font-family: "Space Mono", monospace;
  font-size: 18px;
  font-weight: 700;
  height: auto;
  width: fit-content;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
  color: red;
  border: 5px solid red;
  border-radius: 8px;
  background-color: white;
}

.aboutaruran a {
  color: red;
  text-decoration: none;
}

.closedisclaimer {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  padding: 10px;
  margin-top: 10px;
  background: white;
  color: red;
  cursor: pointer;
  border: none;
  position: absolute;
  top: 0px;
  right: 10px;
}



/*PRODUCTS MENU*/
.productsmenu {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 Spalten */
  column-gap: 50px;
  row-gap: 40px;
  align-items: start;
  justify-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.productred,
.productgreen,
.productblue,
.productyellow {
  border: 5px solid black; /* Rahmen um jedes Mitglied */
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  min-height: 360px;
}


.productred img,
.productgreen img,
.productblue img,
.productyellow img {
  display: block;
  height: 100px;
  width: 100px;
  object-fit: contain;
  border: 5px solid black;
  border-radius: 8px;
  background-color: white;
  margin: auto;
}

.productred p,
.productgreen p,
.productblue p,
.productyellow p {
  font-family: monospace;
  text-align: center;
  font-size: 25px;
  margin-top: 10px;
}

.productsmenu h1 {
  text-align: center;
  font-family: "Space Mono", monospace;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.productred {
  background-color: rgba(255, 0, 0, 0.659);
  display: block;
}


.productgreen {
  background-color: rgba(0, 191, 0, 0.637);
}

.productblue {
  background-color: rgba(0, 0, 255, 0.609);
}

.productyellow {
  background-color: rgba(255, 255, 0, 0.766);
}

.productred a,
.productgreen a,
.productblue a,
.productyellow a {
  text-decoration: none;
  color: inherit;
}