/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Bree+Serif&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');


html:not([data-scroll="0"]) header figure img {
    width: 100px;
  }


html {
    color: white;
    background: url(../img/background.jpg) no-repeat center center fixed #23214c; 
    background-size: cover;
}

body {
    font-family: "Roboto Condensed", sans-serif;
    padding-top: 70px;
    padding-bottom: 70px;
    width: 1200px;
    margin: 40px auto;
}

h1, h2, h3 {
    font-family: 'Bree Serif', 'serif';
}

a {
    text-decoration: none;
}

body > header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
}


body > header figure {
    position: absolute;
    top: -10px;
    right: 0;
    transform: rotate(10deg);
    z-index: 666;
    display: inline-block;
    text-align: center;
}
body > header figure img {
    width: 150px;
    filter: drop-shadow( 5px 5px 15px rgba(0, 0, 0, .5) );
    transition: width 1s;
}
body > header figcaption {
    font-family: 'Amatic SC', cursive;
    font-size: 25px;
    text-align: center;
    margin-top: 10px;
    text-shadow: 5px 5px 15px rgba(0, 0, 0, .5);
}

body > header nav {
    word-wrap:break-word !important;
    background-color: #23214c;
    padding-left: 20px;
    position: relative;
    width: 100%;
}
body > header nav li {
    display: inline-block;
    background-color: #23214c;
}
body > header nav > ul > li:first-child {
    opacity: .5;
}
body > header nav li i {
    padding: 0 10px;
}
body > header nav li > ul {
    border: 1px solid black;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, .3);
}
body > header nav a {
    color: inherit;
    display: block;
    padding: 0 10px;
    line-height: 60px;
}
body > header nav a:hover {
    background-color: white;
    color: #23214c;;
}
/* Hide Dropdowns by Default */
body > header nav ul ul {
	display: none;
	position: absolute; 
	top: 60px; /* de (line-)height van de main nav (a) */
}
/* Display Dropdowns on Hover */
body > header nav ul li:hover > ul {
	display:inherit;
}
/* Fisrt Tier Dropdown */
body > header nav ul ul li {
	width:350px;
	float:none;
	display:list-item;
	position: relative;
}
/* Second, Third and more Tiers	*/
body > header nav ul ul ul li {
	position: relative;
	top:-60px; 
	left:350px;
}
/* Change this in order to change the Dropdown symbol */
body > header li > a:after { content:  ' +'; }
body > header li > a:only-child:after { content: ''; }
body > header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}


/*html {*/
/*    height:100%;*/
/*    background-image: linear-gradient(to right top, #8e44ad 0%, #3498db 100%);*/
/*}*/

main nav {
    max-width: 960px;
    mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 25%, #ffffff 75%, rgba(255, 255, 255, 0) 100%);
    margin: 0 auto;
    padding: 60px 0;
}

main nav ul {
    text-align: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 25%, rgba(255, 255, 255, .3) 75%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
}

main nav ul li {
    display: inline-block;
}

main nav ul li a {
    padding: 18px;
    font-family: 'Amatic SC', cursive;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(0, 35, 122, 0.7);
    font-size: 25px;
    text-decoration: none;
    display: block;
}

main nav ul li a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, .1);
    color: rgba(0, 35, 122, 0.7);
}




footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 30px;
    background-color: rgba(35,33,76,0.8);
}
footer h2 {
    text-shadow: 5px 5px 15px rgba(0, 0, 0, .9);
}