




h1, h2 {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}

h3 {
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
}

button {
    font-size: 1.1em;
    text-align: center;
    outline: solid 1px black;
    background-color: rgb(240, 240, 240);
    padding: 0.75em 1.5em;
    border-radius: 0.5em;
    box-sizing: border-box;
}

button:hover {
    cursor: pointer;
    font-weight: bold;
    outline: solid 2px black;
}

/* LANGUAGE */
nav#language-selector {
    display: inline-block;
    margin: 0.5em;
    align-self: end;
    justify-self: end;
}

a.selected {
    text-decoration: underline;
}

a:hover {
    cursor: pointer;
    text-decoration: underline;
}

/* HEADER */
header#logo {
    display: flex;
    flex-direction: column;
    align-items: center;

    & img {
        width: 35%;
        margin: 3em 3em 2em;
    }
}





/* CONTACT */
section#formulier {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 75vh;
    margin: auto;

    &>p {
        text-align: center;
        margin: 2em;
        margin-bottom: 3em;
    }
}



