:root {
    --backgroundcolor: #ffffff;
    --Goud: #C5B673;
    --scroll: #cccccc;
    --scrollhover: #c5b673;
    /*--lettertype:  Verdana sans-serif;*/
    --tekstkleur: #222222;
    --font1: font-family: 'Dancing Script', cursive;
    --font2: font-family: 'Akaya Telivigala', cursive;
}

/* Dark mode variables */
:root.dark-mode {
    --backgroundcolor: #222222;
    --tekstkleur: white;
    --scroll: #3b3b3b;
    --scrollhover: #c5b6735d;
    --Goud: #C5B673;
}

::-webkit-scrollbar {
    height: 7px;
    width: 7px;
}
  
/* Style the scrollbar thumb */
::-webkit-scrollbar-thumb {
    background-color: var(--scroll);
    border-radius: 10px;
    /* height: 2px; */
}

/* Style the scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollhover);
}

body{
    background-color: var(--backgroundcolor);
    font-family: 'Akaya Telivigala', cursive;
}


/*opmaak header*/
header{
    width: 100%;
    margin: 0 auto;
    position: relative;
    font-family: 'Dancing Script', cursive;
}

header div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header figure:nth-of-type(1){
    width: 100%;
    height: 122px;
    /* min-width: 70px; */
    margin: auto auto;
    margin-bottom: 50px;
    /* margin-top: 50px; */
    border-bottom: var(--Goud) solid 3px;
    /* position: fixed; */
    background-color: var(--backgroundcolor);
}
header figure:nth-of-type(1) img{
    width: 110px;
    height: 110px;
    margin: auto 0;
    /* center the image */
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2px;
}

header figure:nth-of-type(2){
    margin: 0 auto;
    width: 90%;
    background-image: url(../images/pexels_cropped.jpg);
    height: 350px;
    background-size: cover;
    background-position: center;
    background-position-y: bottom;
    /* top: 150px; */
    padding-top: 200px;
}
header h1{
    position: absolute;
    top: 350px;
    left: 160px;
    color: var(--backgroundcolor);
    font-size: 4rem;
    font-weight: lighter;
}
header span{
    font-weight: bold;
    color: var(--Goud);
}
.logo {
    width: 110px;
    height: 110px;
  }

main h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--Goud);
    margin-bottom: 50px;
    margin-top: 50px;
    font-family: 'Dancing Script', cursive;
}
/*Make this page responsive for phones*/
@media screen and (max-width: 600px) {
    header h1{
        font-size: 2.5rem;
        left: 18%;
        margin: auto auto;
        top: 450px;
        color: var(--tekstkleur);
    }
    header figure:nth-of-type(2) {
        height: 50px;
    }
    main h2 {
        font-size: 1.5rem;
        padding-top: 150px;
    }
}

