:root {
    /*   --orange_color: cornflowerblue; */
    --orange_color: rgb(255, 120, 70);
    --body-font: Verdana;

}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    background-color: white;
}


body {
    font-family: -apple-system, system-ui, sans-serif;
    font-weight: 400;

    color: black;
    background-color: white;
    font-size: 1em;
}

span,
cite {
    font-weight: 200;
}

blockquote {
    font-weight: 200;
    margin-top: -0.5em;
}


main {
    position: fixed;
    top: calc(130px + 1px);

    left: 0;
    right: 0;
    bottom: 0;

    overflow-y: scroll;
    scroll-behavior: smooth;

    background-color: white;
    z-index: 0;
}

@media (min-width: 1024px) {
    main {
        font-size: 1em;
        padding-left: 20%;
        padding-right: 20%;
    }
}


@media (max-width: 1024px) {
    main {
        font-size: 1em;
        padding-left: 15%;
        padding-right: 15%;
    }
}

@media (max-width: 768px) {
    main {
        font-size: 0.95em;
        padding-left: 5%;
        padding-right: 5%;
    }
}


h2 {
    text-align: center;
    font-size: 2em;
    margin: 0;
    padding: 0.25em;
    font-weight: bold;
}

h3 {
    font-size: 1.5em;
    font-weight: bold;
    padding-bottom: 0em;
    margin-bottom: 0em;
    text-align: center;
}

hr {
    background-color: var(--orange_color);
    height: 2px;
    border: 0;
    border-radius: 2px;

}

#cv,
#referenties,
#art,
#videos,
#contact,
#muziek {
    padding-top: 0.5em;
}

a {
    transition: all 200ms ease;
    text-decoration: none;
    color: var(--orange_color);
}

a:hover {
    color: rgb(75, 111, 203);
}

#cv,
#referenties {
    line-height: 1.5em;
}