@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('css/fonts/Montserrat-Light.ttf') format('ttf');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('css/fonts/Montserrat-Regular.ttf') format('ttf');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('css/fonts/Montserrat-SemiBold.ttf') format('ttf');
}

/* Basis & Layout */
body {
  margin: 0 2em 0 2em;
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f9f9;
  color: #444;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  
  min-height: 100vh;
}

main {
  width: 100%;
  max-width: 1000px;
  text-align: left;
  
  flex: 1;
}

/* Logo im Header */
header .logo {
  padding-top: 2rem;
  width: 90%;
  max-width: 400px;
  height: auto;
  margin-bottom: 3rem;
  
}

/* Überschriften */
h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FF8A35;
}
h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  color: #FF8A35;
}

/* Fließtext */
p {
  margin: 1rem 0;
  line-height: 1.5;
}

footer {
  
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid #ddd;
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: #666;
}

.footer-left, .footer-right {
  display: inline-block;
}

.footer-right a {
  color: #FF8A35;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}