html {
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "Noto Sans";
    background-color: #A5ABAB;
    color: black;
    line-height: 1.5;
    background-image: url('../img/AchtergrondTonSemi.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: start;
    font-weight: lighter;
    font-stretch: condensed; /* Should apply if supported */
}

.content {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    
}

.navigation {
    text-align: left;
    list-style-type: none;
    padding: 0;
    font-size: 1.2rem;
}

.navigation li {
    display: block;
    margin: 10px 0;
}

.nav-link {
    text-decoration: none;
    color: inherit;
    padding: 10px;
    display: inline-block;
    width: 100%;
}



.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}


.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-content {
    display: none;
    position: static;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 40px;
    left: 0;
}

.dropdown-content .nav-link {
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    margin-top: 15px;
}


.dropdown:hover .dropdown-content {
    display: block;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
}

@media (max-width: 768px) {

    .navigation li {
        display: block;
        margin: 10px 0;
    }

    .nav-link {
        padding: 15px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        width: 100%;
    }
}


.dropbtn {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    position: static;
    top: 0;
    left: 0;
}

@media(min-width: 2000px){
    body{
        background-size: contain;
        background-repeat: no-repeat;
    }
}

#title {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: inline-block;
    width: 100%;
}

.dropdown {
    background-color: default;
}

