/* RESET */

*
{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* PAGINA */

body
{
    font-family:"Segoe UI", Arial, Helvetica, sans-serif;
    font-size:16px;
    line-height:20px;

    background: var(--kleur-achtergrond);
    color: var(--kleur-tekst);

    padding:30px;
}

/* BLOKKEN */

section
{
    margin-bottom:30px;
}

div
{
    margin-bottom:15px;
}

/* TITELS */

h1
{
    font-size:36px;
    line-height:42px;

    margin-bottom:20px;
}

h2
{
    font-size:30px;
    line-height:36px;

    margin-bottom:15px;
}

h3
{
    font-size:24px;
    line-height:30px;

    margin-bottom:10px;
}

/* TEKST */

p
{
    margin-bottom:15px;
}

small
{
    font-size:13px;
    line-height:18px;

    color:#666666;
}

/* LINKS */

a
{
    color:var(--kleur-tekst);
    text-decoration:none;
}

a:hover
{
    text-decoration:underline;
}

/* FORMULIEREN */

form
{
    #background:#ffffff;

    padding:20px;

    border:1px solid #cccccc;

    border-radius:6px;
}

label
{
    display:block;

    margin-bottom:8px;

    font-weight:600;
}

input,
textarea,
select
{
    width:100%;

    padding:12px;

    margin-bottom:15px;

    border:1px solid #bbbbbb;

    border-radius:4px;

    font-family:"Segoe UI", Arial, Helvetica, sans-serif;
    font-size:16px;
    line-height:20px;

    background:#ffffff;
}

/* FOCUS */

input:focus,
textarea:focus,
select:focus
{
    outline:none;

    border-color:#0055aa;

    background:#f9fcff;
}

/* TEXTAREA */

textarea
{
    min-height:140px;

    resize:vertical;
}

/* BUTTONS */

button
{
    padding:12px 20px;

    border:none;

    border-radius:4px;

    background:#0055aa;

    color:#ffffff;

    font-family:"Segoe UI", Arial, Helvetica, sans-serif;
    font-size:16px;
    line-height:20px;

    cursor:pointer;
}

button:hover
{
    background:#003f80;
}

/* TABELLEN */

table
{
    width:100%;

    border-collapse:collapse;

    background:#ffffff;
}

table th
{
    background:#dddddd;
}

table th,
table td
{
    padding:10px;

    border:1px solid #cccccc;

    text-align:left;
}

/* AFBEELDINGEN */

img
{
    width:100%;
    height:auto;
    border-radius:5px;
}

/* LIJSTEN */

ul,
ol
{
    margin-left:25px;
    margin-bottom:15px;
}

li
{
    margin-bottom:5px;
}

/* RESPONSIVE */

@media screen and (max-width:700px)
{
    body
    {
        padding:15px;
    }

    form
    {
        padding:15px;
    }
}

