@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css');
body {
    font-family: 'Daidact Gothic', sans-serif;
    color:#000000;
        box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

header {
   
    
    height: 10px;
    padding: 0 0 0 0;
    
}

nav {
    width: auto;
    margin: 0 50px;
    display: flex;
    justify-content: space-between;
}


.lang-menu {
    width: 100px;
	font-family: 'Didact Gothic', sans-serif;
    color:#FFFFFF;
    text-align: right;
    font-weight: bold;
	margin-left: auto;
    margin-top: 20px;
    position: relative;
}
.lang-menu .selected-lang {
    display: flex;   
    justify-content: space-between;
    line-height: 2;
    cursor: pointer;
}
.lang-menu .selected-lang:before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url(../flags/fr_rounded.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.lang-menu ul {
    margin: 0;
    padding: 0;
    display: none;
    background-color: #3c6d86;
    border: 1px solid #ffffff;
    position: absolute;
    top: 0px;
    left: -10px;
    width: 150px;
    border-radius: 5px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
}


.lang-menu ul li {
    list-style: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.lang-menu ul li a {
    font-family: 'Didact Gothic', sans-serif;
    color:#ffffff;
	text-decoration: none;
    width: 150px;
    padding: 5px 10px;
    display: block;
}

.lang-menu ul li:hover {
    background-color: #3c3c3c;
}

.lang-menu ul li a:before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.fr:before {
    background-image: url(../flags/fr_rounded.png);
}
.de:before {
    background-image: url(../flags/de_rounded.png);
}
.nl:before {
    background-image: url(../flags/nl_rounded.png);
}
.us:before {
    background-image:url(../flags/us_rounded.png);
}


.lang-menu:hover ul {
    display: block;
}