﻿/* Swiss 721 Condensed - zelf gehost font */
@font-face {
    font-family: 'Swiss721Condensed';
    src: url('fonts/Swiss721Condensed.woff2') format('woff2'),
         url('fonts/Swiss721Condensed.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Algemene opmaak */
body {
    font-family: 'Swiss721Condensed', 'Comic Sans MS', 'Arial', sans-serif;
    background-color: #fefefe;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: x-large; /* ✅ Standaardgrootte op x-large */
    text-align: center;  /* ✅ Gecentreerde tekst */
}

/* Koppen met relatieve vergroting */
h1 {
    font-size: 2em; /* 2x x-large */
    font-weight: bold;
    margin: 1em 0 0.5em;
}

h2 {
    font-size: 1.5em; /* 1.5x x-large */
    font-weight: bold;
    margin: 1em 0 0.5em;
}

/* Links */
a, a:visited {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Knoppen */
.button {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
.button:hover {
    background-color: #333;
}
