@font-face {
  font-family: 'Quicksand';
  src: url('quicksand.ttf') format('truetype');
  font-weight: semi-bold;
  font-style: normal;
}

a, a:visited {
  color: #a8000a;
  text-decoration: none;
}

a:active, a:hover, a:focus {
  color: #e02227;
}



html {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  display: flex;
  min-height: 100vh;

}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  align-items: center;
}



main {
  flex: 1;
  margin: 50px 0;
  width: 90%;
  overflow-wrap: break-word;
  word-break: break-word;
}



p, div, li, footer a {
  font-size: 16px;
}










footer {
  background-color: #f2f3f5;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 50px;
  margin: 30px 20px;
}

.footer-logo {
  width: 150px;
}

@media screen  and (min-width: 600px) {
  p, div, li {
    font-size: 20px;
}

  main {
    width: 80%;
  }

  .footer-links {
    margin: 50px 20px;
}
}

/* for Einleitung */
.bold {
  font-weight: 600;
}