
header {
  background-color: white;
  padding: 30px 30px;
  border-bottom: 1px solid grey; 
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 100px;
  width: auto;
}

    
.text {
  flex-grow: 1;
  text-align: center;
}


.motto {
  font-weight: bold;
  color: #a05c5c;
  font-size: 24px;
  margin-bottom: 30px;
  font-family: Helvetica;
}

/* Links unterhalb vom Motto */
.links {
  display: flex;
  justify-content: center;
  gap: 20%; 
}

.links a {
  text-decoration: none;
  font-weight: bold;
  color: grey;
  font-family: Helvetica;
}

.links a:hover {
  color: #a05c5c;
}

/* Hauptbereich */
.aussen {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: #FBF9F9;
}

main {
  max-width: 80%;     
  margin: 0 auto;       
  background-color: white;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 4px;
  font-weight: bold;
}


/* Inhaltsabschnitte */
.oben {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.unten {
    display: flex;
    flex-direction: row-reverse;
}



.text{
  flex: 1;
  font-size: 20px;
  color: #333;
  font-family: Helvetica;
  text-align: center;
  line-height: 2;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #807c7c; 
  color: white;
  font-family: Helvetica;
  padding: 20px 40px;
  font-size: 12px;
  align-items: center;
}

footer p, footer a {
  margin: 0;
}

#Text {
  text-align: center;
  line-height: 1.6;
}


footer a {
  text-decoration: none;
  color: lightgrey;
}

#Disc {
  align-self: flex-end;
}

#Disc:hover {
  text-decoration: underline;
}


