<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    /* Kleuren */
    --blue: #1A73E8;
    --light-blue: #4891e1;
    --dark-black: #000000;
    --black: #414656;
    --dark-grey: #444444;
    --grey: #A5ABBD;
    --white-grey: #F3F3F5;
    --light-grey: #DDDDDD;
    --white: #fbf9f9;
    --pink: #C6556F;
    --red: #ff0000;

    /* Tekst */
    --heading-font: 'Arial', sans-serif;
    --body-font: 'Arial', sans-serif;

    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;

    /* Radius &amp; Shadows */
    --border-radius-sm: 4px;
    --border-radius-md: 10px;
    --border-radius-lg: 22px;

    --box-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --box-shadow-md: 0 0px 12px rgba(0, 0, 0, 0.05);
    --box-shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.15);

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

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

body {
    font-family: Arial, sans-serif;
    font-size: var(--font-size-base);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.start-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    text-decoration: none;
    color: var(--black);
    animation: fadeIn 0.6s ease-in-out;
}

.start-screen .logo {
    width: 200px;
    height: auto;
    margin-bottom: var(--spacing-md);
}

.start-screen .tagline {
    font-size: var(--font-size-lg);
    font-weight: bold;
    max-width: 80%;
    line-height: 1.4;
}


</pre></body></html>