/* Remove padding and margin */
* {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  font-family: 'Noto Sans', sans-serif;
  color: #000000;
  background-color: #E6E6E6;
  background-image: url('/assets/img/bgpattern.svg');
  background-repeat: repeat;
  font-size: 1.2rem;
}

h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.125rem;
  margin: 1rem 0;
}

 @media (min-width: 680px) {
  h2 {
      font-size: 2.25rem;
      margin: 2rem 0;
    }
  }

h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

.button {
  padding: 1rem;
  border: 2px solid #000000;
  color: #000000;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.center > .button {
  margin-top: 2rem;
}

header {
  background-color: #000000;
}

header img.bg {
  width: 100%;
}

.header-content {
  display: flex;
  justify-content: space-between;
}

img.logo {
  height: 2.5rem;
}

@media (min-width: 680px) {
  img.logo {
      height: 3.563rem;
    }
  }

  nav {
    display: none;
  }

@media (min-width: 990px) {
  nav {
    display: flex;
    align-items: center;
  }
}

nav ul {
  display: flex;
}

nav ul li {
    list-style: none;
    margin-left: 2rem;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 300;
}

.bg_image_3 {
  background-image: linear-gradient(rgba(0, 0, 0, .8) 0%, rgba(255, 255, 255, 0) 100%), url('/assets/img/pcs-banner.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.content {
  display: grid;
  place-content: center;
  text-align: center;
  margin: 0 auto;
  min-height: 16.688rem;
  max-width: 700px;
}

@media (min-width: 680px) {
  .content {
     min-height: 48.625rem;
  }
}

.content h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

@media (min-width: 680px) {
  .content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.content p {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

@media (min-width: 680px) {
  .content p {
    font-size: 1.875rem;
    margin-bottom: 3rem;
  }
}

.content a.bg-button {
  color: #FFFFFF;
  padding: .5rem;
  border: 2px solid #FFFFFF;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  width: 7.5rem;
  margin: 0 auto;
}

@media (min-width: 680px) {
  .content a.bg-button {
    width: 8.75rem;
    padding: 1rem;
  }
}

.banner-black {
  background-color: #000000;
}

.banner-black p, .banner-black h2 {
  color: #FFFFFF;
}

.large-text {
  font-size: 1.125rem;
}

@media (min-width: 990px) {
  .large-text {
    font-size: 1.5rem;
  }
}

.keyword {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  background-color: #FFFFFF;
  color: #000000;
  padding: 1rem;
  border-radius: 25px;
  display: inline-flex;
  margin: .8rem;
}

@media (min-width: 680px) {
  .keyword { 
    font-size: 1.125rem;
  }
}

.contact {
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 1032px) {
  .contact {
    margin-bottom: 1rem;
  }
}

.contact img {
  height: 50px;
  margin-bottom: 1rem;
}

.contact h3 {
  margin-bottom: 1rem;
}

.contact a {
  color: #000000;
  margin-right: 0;
}

.box-container p {
  font-size: 1rem;
}

.box-container h3 {
  margin-top: 1rem;
}

.box-container img {
  height: 45px;

}

footer {
  background-color: #000000;
  height: auto;
  padding: 1rem 0;
  margin-top: 4rem;
}

footer p {
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 300;
  text-decoration: none;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

footer a {
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 300;
  text-decoration: none;
}

footer > main {
  display: flex;
}

.footer-content {
  display: flex;
  flex-direction: column;
}

@media (min-width: 990px) {
  .footer-content {
    flex-direction: row;
  }

  footer p { 
    margin-bottom: 0;
  }
}

.imprint p {
  margin-bottom: 1rem;
}

.imprint h3 {
  margin-top: 2rem;
}

.dataprivacy p {
  margin-bottom: 1rem;
}