@font-face {
    font-family: KleischLLMedium;
    src: url(../fonts/KleischLLWeb-Medium.woff);
}

@font-face {
    font-family: KleischLLItalic;
    src: url(../fonts/KleischLLWeb-MediumItalic.woff2);
}

@font-face {
    font-family: KleischLLSubItalic;
    src: url(../fonts/KleischLLSub-MediumItalic.woff2);
}

@font-face {
    font-family: SohneBuch;
    src: url(../fonts/soehne-buch.woff2);
}

@font-face {
    font-family: SohneHalbfett;
    src: url(../fonts/soehne-halbfett.woff2);
}


:root {
    --green: rgba(60,115,85,0.88);
    --red: rgba(160,45,45,1);
    --white: rgba(255,250,239,1);
    --inhoudelijk:  rgba(45, 90, 160, 1);
    --leesteken: rgba(220, 125, 45, 1);
    --formeel:  rgba(120, 70, 160, 1);
    --grammatica: rgba(40, 140, 150, 1);
    --spelling: rgba(240, 200, 50, 1);
}

.hidden {
    display: none !important;
}

.transparent {
    visibility: hidden;
    pointer-events: none;
}


body {
    font-family: SohneBuch;
}

body > header {
    height: 577px;
    background-color: var(--white);
}

body > header .main {
    display: flex;
    width: 80%;
    max-width: 1800px;
    padding-top: 3rem;
    font-family: KleischLLMedium;
    margin-left: auto;
    margin-right: auto;
}

body > header .main img {
    height: 135px;
    cursor: pointer;
}

body > header .main hr {
  border: none;                 /* remove default styles */
  border-top: 1.5px solid rgba(0,0,0,0.1); /* stripe line */
  width: 95%;                  /* full width */
}

body > header .main h1 {
    font-size: 41px;
    text-align: center;
    margin-bottom: 1rem;
    cursor: pointer;
}

body > header .second {
    width: 85%;
    margin-top: auto;
    margin-bottom: auto;
}

body > header .second ul{
    display: flex;
    justify-content: space-around;
    width: 100%;
    font-size: 23px;
    margin-top: 1rem;
}

body > header .second ul a{
    text-decoration: none;
    color: black;
}

body > header .second ul a.active{
    text-decoration: underline solid var(--green);
    color: var(--green);
}

body > header .second ul a:hover{
    text-decoration: underline solid var(--green);
    color: var(--green);
}


