/*Alle Links bleiben schwarz und werden nicht unterstrichen.*/
p {
  font-family: "Helvetica Neue", sans-serif;
}

a {
  color: #000000;
  text-decoration: none;
}

/*Textformate*/

.linksbuendig {
    text-align: left;
}

.rechtsbuendig {
    text-align: right;
}

.mittig {
    text-align: center;
}

.blocksatz {
    text-align: justify;
}

/*Der Inhalt der Startseite wird zentriert.*/
.wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*COLUMNS??? Nicht scrollbar.*/
.col-main {
  flex: 1;
}

.col-complementary {
  flex: 1;
}

/* Responsive: */
@media only screen and (min-width: 640px) {
  .layout {
    display: flex;
  }
  
  .container {
    position: fixed;
    transform: translate(-50%, -50%);
  }
}

/* etc */
body {
  margin: 1.5em;
}

.container {
  max-width: 60em;
  margin-right: auto;
  margin-left: auto;
  top: 50%;
  left: 50%;
}

.col {
  padding: 1em;
  margin: 0 2px 2px 0;
}