body, html {
    width: 100dvw;
    height: 100dvh;
    margin:0;
    padding: 0;
    overflow: hidden;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    background-image: url(/home/img/bomen.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

* {box-sizing:border-box;}

/* Dropdown Toggle Button */
.dropdown-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: yellow;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s;
}

.dropdown-toggle:hover {
    background-color: #00FF41;
    color: #333;
}

/* Dropdown Menu Content */
.dropdown-menu {
    display: none; /* Standaard verborgen */
    position: fixed;
    top: 50px;
    right: 10px;
    width: 300px;
    background-color: #212121;
    border: 2px solid #00FF41;
    font-family: 'Courier New', Courier, monospace;
    border-radius: 5px;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.dropdown-menu.show {
    display: block; /* Toon als .show toegevoegd */
}

/* Dropdown Items */
.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: whitesmoke;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-item:hover {
    background-color: lime;
    color: #212121;
}


footer {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: left;
    padding-left: 20px;
    color: #00FF41;
}



@media only screen and (max-width:768px) {

    body, html {
    width: 100dvw;
    min-height: 100dvh;
    margin:0;
    padding: 0;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    background-image: url(/home/img/bomen.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    }

    
    

    footer {
        position: fixed;
        bottom: 30px;
        left: 0;
        height: 100vh;
        text-align: right;
        background-color: transparent;
        color: yellow;
        padding: 12px;
        writing-mode: vertical-lr;
        text-orientation: mixed;
    }
}
