@charset "utf-8";
/* CSS Document */
.shadow {
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.25);
}
* {
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
  font-family: Roboto, sans-serif;
  color: #000;
  font-size: 18px;
}
#wrapper {
  width: auto;
  max-width: 900px;
  margin: 20px;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 992px) {
  #wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    margin: 30px auto;
  }
}
#links {
  grid-column-start: 1;
  grid-column-end: 2;
  padding: 65px;
}
#rechts {
  grid-column-start: 2;
  grid-column-end: 3;
  padding: 65px;
}
#footer {
  grid-column-start: 1;
  grid-column-end: 3;
}
.copyright {
  width: 550px;
}
.design {
  width: 170px;
  float: right;
}
a:link,
a:visited {
  color: #000;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
h1 {
  font-size: 1.5em;
  color: #E5007D;
  font-weight: normal;
  margin-bottom: 20px;
}
h2 {
  color: #662282;
  font-size: 1em;
  font-weight: bold;
}
p {
  line-height: 1.66em;
  margin-bottom: 1rem;
}
a {
  color: #662282;
  text-decoration: underline;
}
ul {
  margin-top: 60px;
  list-style: none;
}
ul li {
  line-height: 1.66rem;
  margin-bottom: 1.2rem;
}
