/* load custom fonts */
@font-face {
  font-family: 'Junction Bold';
  src: url('fonts/Junction-bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/SpaceGrotesk-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* page background & reset */
body {
  margin: 0;
  padding: 40px;
  background: #030777;
  font-family: sans-serif;
  color: #a1fc49;
}

/* container to center content */
.container {
  max-width: 800px;
  margin: 0 auto;
}

/* title styling */
.title {
  font-family: 'Junction Bold', sans-serif;
  color: #a1fc49;
  font-size: 4rem;
  margin-bottom: 30px;
  text-align: left;
}

@media (max-width: 768px) {
  .title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

   /* ondertitel styling - combines broodtekst styling with title font */
    .ondertitel {
      font-family: 'Junction Bold', sans-serif;
      color: #a1fc49;
      font-size: 1.50rem;
      margin-bottom: 40px;
      text-align: left;
      line-height: 1.5;
    }
    @media (max-width: 768px) {
      .ondertitel {
        font-size: 1rem;
        margin-bottom: 20px;
      }
    }

/* subtitle styling */
.broodtekst {
  font-family: 'Space Grotesk', sans-serif;
  color: #a1fc49;
  font-size: 1.25rem;
  margin-bottom: 40px;
  text-align: left;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .broodtekst {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

/* icon container */
.icon-container {
  text-align: left;
  margin-bottom: 1em;
}
.icon-container img {
  max-width: 100px;
  height: auto;
}

/* link list */
ul.link-list {
  list-style: none;
  padding: 0;
}
ul.link-list li {
  margin-bottom: 0.5em;
}
ul.link-list li a {
  color: #a1fc49;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.3s;
}
ul.link-list li a:hover {
  color: #ffffff;
}