/*
	Theme Name: PeilPunt Thema
	Author: Bart Merkus
	Author URI: https://www.bartmerkus.nl/
	Description: Een maatwerk Wordpress Thema voor Peilpunt.com.
	Version: 1.0
	License: GNU General Public License v2 or later
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
	Text Domain: peilpunt-theme
*/
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-VariableFont.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains-Mono";
  src: url("fonts/JetBrainsMono-VariableFont.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
/*-------------------- VARIABLEN */
:root {
  --kleur-tekst-donker: #000;
}

/*-------------------- ALGEMEEN */
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--secondary-font);
  color: var(--kleur-tekst-donker);
}

p {
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}

img {
  width: 100%;
  height: auto;
}

.fullWidthContainer {
  width: 100%;
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.normalContainer {
  width: 100%;
  max-width: 1200px;
}