/*
 Theme Name: Van der Hop Advies
 Author: Marco van der Hop
 Description: Thema in aanbouw voor IT Adviesbureau
 Version: 1.0
*/
body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background: #f4f4f9;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    color: #036b34;
}

p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.contact-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 1rem;
    color: #fff;
    background: #036b34;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #003d80;
}

footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}