:root {
    --logodarkblue: #00529f;
    --logoblue: #4c87bd;
    --logolightblue: #cbdbeb;
}

* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    height: inherit;
    margin: 0;
    display: flex;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, sans-serif;;
    background-size: cover;
    background-image: url("imgs/nieuw-pand.jpg");
    background-repeat: no-repeat;
    background-position-x: center;
}

.darkblue {
    color: var(--logodarkblue);
}

.darkblue:hover {
    background: none;
}


/* ---------------- LOGO ---------------- */


#logo {
    width: 100%;
    margin: auto;
    max-width: 300px;
}


/* ---------------- Main ---------------- */
main {
    width: 100%;
    width: min(100dvw - 40px, 700px);
    margin: auto;
    display: flex;
    background: white;
}

.main-content {
    padding: 30px 65px 30px 45px;
    border-left: 20px solid var(--logodarkblue);

    @media screen and (max-width: 575.98px) {
        padding-inline: 30px;
    }
}

h1 {
    margin: 1em 0;
}

h1 + p {
    line-height: 1.9;
}

/* ---------------- Contact ---------------- */

.contact h2 {
    font-family: 'Anton', sans-serif;
    text-align: center;
    margin: 1em 0 0.5em 0em;
}

.contact hr {
    width: 100%;
    border: solid 2px var(--logoblue);
    margin: auto;
    max-width: 200px;
}

.contact p {
    margin: 1em 0;
    line-height: 2em;
}

/* ---------------- Button ---------------- */
a:visited, a:link {
    text-decoration: none;
}

a:hover {
    background: var(--logoblue);
}

.buttonLogIn {
    font-size: 1.2em;
    display: block;
    text-align: center;
    background: var(--logodarkblue);
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 14px;
    border-radius: 0.7em;
    transition: background-color 200ms ease;
}