@font-face {
  font-family: 'Poppins';
  src: url('../font/poppins-v23-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins Light';
  src: url('../font/poppins-v23-latin-200.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #000;
  color: #fff;
}

body {
  background-image: url('../img/background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.content {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: left;
  font-size: 1.2rem;
}

h1 {
  font-family: 'Poppins Light', sans-serif;
  font-size: 3rem;
  font-weight: 200;
  margin-bottom: 2rem;
}

p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ccc;
}

.contact .icon {
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Tablet */
@media (max-width: 991px) {
  .content {
    font-size: 1.1rem;
    padding: 3rem 1.25rem;
  }

  h1 {
    font-size: 2.5rem;
  }
}

/* Mobiel */
@media (max-width: 600px) {
  .content {
    font-size: 1rem;
    padding: 2.5rem 1rem;
  }

  h1 {
    font-size: 2rem;
  }
}
