@charset "UTF-8";
/* CSS Document */

body, html {
            height: 100%;
            font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
            color: white;
			margin: 0px;
        }

        .background {
            background: url( "../images/JK-bg.jpg") no-repeat center center fixed;
            background-size: cover;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .overlay {
            background-color: rgba(15, 38, 92, 0.5); /* Donkerblauwe overlay met 80% transparantie */
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            padding: 20px;
        }

        .logo {
            width: 250px;
            margin-bottom: 20px;
        }

        h1 {
            font-size: 2.5em;
            margin-bottom: 1px;
        }

		h2 {
            font-size: 1.6em;
			font-weight: 300;
			color: white;
            margin-bottom: 50px;
        }

        p {
            font-size: 1.2em;
            margin-bottom: 30px;
        }

        .contact-btn {
            padding: 15px 30px;
            font-size: 1em;
            color: rgba(15, 38, 92, 1);
            background-color: rgba(182, 155, 105, 1);
            border: none;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .contact-btn:hover {
            background-color: #ddd;
        }