html {
  font-family: 'Montserrat', helvetica, sans-serif;
  font-size: 62.5%;
  width: 100%;
}

body {
  padding: 3rem;
}

h1 {
  font-size: 4.5rem;
  font-weight: bold;
  padding: 2rem 0;
}

h2 {
  font-size: 3rem;
  font-weight: bold;
  padding: 1.5rem 0;
}

h3 {
  font-size: 2.8rem;
  font-weight: bold;
}

h4 {
  font-size: 2.6rem;
}

h5 {
  font-size: 2.3rem;
}

p {
  font-size: 2rem;
  padding: 1rem 0;
}

header a {
  text-decoration: none;
  color: rgba(59, 68, 75, 1);
  font-size: 4rem;
  font-weight: bold;
  padding: 1.5rem 1.5rem;
  text-align: left;
  transition: ease-in 0.3s;
}

header a:hover {
  color: rgba(204, 153, 51, 1);
}

@media screen and (max-width: 500px) {
  html {
    font-size: 31.25%;
  }
}

header {
  padding: 5rem 0;
  border-bottom: 1rem solid rgba(59,68,75, 0.99);
}

main a {
  text-decoration: none;
  color: rgba(59, 68, 75, 1);
  font-size: 2.8rem;
  font-weight: bold;
  text-align: left;
  transition: ease-in 0.3s;
}

main a:hover {
  color: rgba(204, 153, 51, 1);
}

main {
  padding-bottom: 8rem;
}

footer {
  background-color: rgba(59,68,75, 0.99);
  padding: 3rem;
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: row;
  grid-gap: 1rem;
  grid-template-areas:  "copyright . impressum datenschutz";
}

footer a{
  text-decoration: none;
  font-size: 2rem;
  color: white;
  transition: ease-in 0.3s;
  padding-top: 2rem 0;
}

footer a:hover {
  color: rgba(204, 153, 51, 1);
}

#impressum {
  grid-area: impressum;
  text-align: justify;
  font-size: 1rem;
}

#datenschutz {
  grid-area: datenschutz;
  text-align: center;
  font-size: 1rem;
}

#copyright {
  grid-area: copyright;
  font-size: 1rem;
}
