body, html {
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-image: url('../img/bomen.jpg');
    background-position: center;
    color: lime;
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;
}

* {box-sizing: border-box;}

#mail-bold {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
    text-shadow: 2px 2px 1px #F4EBD0;
}

button#font-family { font-family: inherit; }

#orange-links {
    text-align: center;
    background-color:#FFC857;
    justify-content: center;
    align-items: center;
}

a:link, a:hover, a:active, a:visited {
    text-decoration: none;
    color: deeppink;
}

.link.active {
    color: red;
    font-weight: bold;
    letter-spacing: 2px;
    margin-left: 12px;
    
}

.container {
    position: relative;
    border-radius: 20px;
    background: 
  linear-gradient( rgba(21,21,21,0.3)) padding-box, url('../img/bomen.jpg') padding-box,
  linear-gradient(rgba(21,21,21,0.3)) border-box;
    margin-left: auto;
    margin-right: auto;
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    margin-top: 10px;
    display: grid;
    grid-template-areas: 
        "open-sidebar header cookies"
        "video grid_base grid_natuur" 
        "video grid_base grid_egel"
        "foto grid_base grid_grachten"
        "foto grid_base grid_wandelen"
        "footer footer footer";
    grid-template-columns: 0.3fr 1fr 0.3fr;
    grid-template-rows: 0.4fr 1fr 1fr 1fr 1fr 0.4fr;
    column-gap: 10px;
    row-gap: 12px;
    align-content: center;
    overflow: hidden;
        
}

#images {
    position: relative;
    width: 50%;
    height: 400px;
    margin: auto;
    overflow: hidden;
}

#images .slide {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    margin: 0 auto;
}

#images .slide.active {opacity: 1;}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease;
}

#image-box {
    width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: row;
    justify-content: center;
    background-color: #FFC857;
    z-index: 10;
}

#image-text {
    text-align: center;
    line-height: 10px;
    font-size: 18px;
    font-weight: bold;
    color: deeppink;
    text-shadow: 
    2px 2px 1px #212121,
    -2px 2px 1px #212121,
    2px -2px 1px #212121,
    -2px -2px 1px #212121
    ;
    font-family: 'Courier New', Courier, monospace;
}

#image-box img {
    margin: 20px;
    width: 400px;
    height: 400px;
    border-radius: 50%;

}

.h3-span {
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.h3-span .datum {
    margin-left: auto;
    color: lime;
    font-size: 12px;
}



.open-sidebar {
        
        display: block;
        z-index: 100;
        font-size: 1rem;
        background: deeppink;
        color:lime;
        text-shadow: 
        1px 1px 0 black,
        -1px 1px 0 black,
        1px -1px 0 black,
        -1px -1px 0 black;
        border: none;
        border-radius: 0px;
        width: 50%;
        height: 50%;
        margin-left:auto;
        margin-right: auto;
        margin-top: auto;
        margin-bottom: auto;
        cursor: pointer;
        grid-area: open-sidebar;
        align-content: center;
        text-align: center;
        
    }

    .sidebar-overlay {
        position: fixed;
        top: 12vh;
        left: 0;
        width: 0;
        height: 88vh;
        background: rgba(33, 33, 33, 0.6);
        box-shadow: none;
        overflow-x: hidden;
        overflow-y: auto;
        z-index: 1000;
        transition: width 1.2s cubic-bezier(.5,0.5,.3,1);
        will-change: width;
        padding: 0;
        display: flex;
    }

    .sidebar-overlay::-webkit-scrollbar {
        width: 10px;
        background: transparent;
    }

    .sidebar-overlay::-webkit-scrollbar-thumb {
        background: lime;
        border-radius: 4px;
    }

    .sidebar-overlay::-webkit-scrollbar-thumb:hover {
        background: #333333;
    }

    .sidebar-overlay::-webkit-scrollbar-track {
        background: transparent;
    }

    /*speciaal voor FireFox*/

    .sidebar-overlay {
        scrollbar-width: thin;
        scrollbar-color: #FFC857 transparent;
    }

    .sidebar-overlay.open {
        width: 20vw;
        overflow-x: hidden;
        padding: 24px 16px 16px 16px;
    }

    .sidebar-overlay .close-sidebar  {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 2rem;
        background-color: transparent;
        border: 1px solid transparent;
        color: deeppink;
        cursor: pointer;
        justify-content: center;
        text-align: center;
        align-items: center;
        transition: transform 1s;
    }

    .sidebar-overlay .close-sidebar:hover {
        border: none;
        background-color: transparent;
        color: red;
        transform: rotate(90deg) scale(1.2) translateX(5px) translateY(-5px);
    }

    .sidebar-overlay .menu-content {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        justify-items: flex-start;
        gap: 20px;
    }

    .sidebar-overlay button {

        width: 100%;
        padding: 5px;
        font-size: 1.2rem;
        background: transparent;
        color: lime;
        border: 2px solid transparent;
        background-color: rgba(21,21,21,0.6);
        border-radius: 14px;
        cursor: pointer;
        text-align: center;
        box-shadow: none;
        transition: background-color 0.3s;
       
    }

    .sidebar-overlay button:hover {
        
        
        
        border: 2px solid darkturquoise;
        transition-delay: 0.2s;
        
    }

    .sidebar-overlay #menu-content button:hover {
        animation: color 1s forwards;
    }

    @keyframes color {
        from {
            color: lightseagreen;
            background-color: darkred
        }
        to {color: darkturquoise;
            background-color: deeppink;
            
        }
    }

    

    .menu-content {
        display: none;
    }

h2 {
    text-align: center;
    text-shadow:
    1px 1px 0 black,
    -1px 1px 0 black,
    1px -1px 0 black,
    -1px -1px 0 black;
}

h3 {
    background-color: rgba(33,33,33,0.7);
    letter-spacing: 3px;
    text-align: center;
    box-shadow: 
    0px 0px 1px 3px #212121,
    0px 0px 1px 3px  yellow;
    padding: 7px;
    border-radius: 10px;
    width: 100% - 40px;
    margin: 20px;
    color: yellow;
    font-weight: bold;
    text-shadow:
    1px 1px 0 black,
    -1px 1px 0 black,
    1px -1px 0 black,
    -1px -1px 0 black;
    text-align: center;
    
}

#grid-content {
    color: yellow;
    width: 50%;
    left: 0;
    margin-right: auto;
    text-align: left;
    padding: 12px;
    
}

#homesvg1 {
    animation: 75s dotmove1 ease-in-out infinite;
    height: 22vh;
    overflow: hidden;
    
}

@keyframes dotmove1 {
    0% {
        transform: translate(-60%, 120px);
        opacity: 0.4;
    }
    20% {
        transform: scale(1.3) translate(120%, 170px);
        opacity: 1;
    }
    40% {
        transform: translate(250%, 80px) rotate(-90deg) scale(1.2);
    }
    60% {
        transform: translate(110%, 60px) scale(1.2);
        opacity: 1;
    }
    70% {
        transform: translate(80%, 40px) scale(1.2) rotate(20deg);
        opacity: 1;
    }
    80% {
        transform: scale(1.1) translate(140%, 0px);
        opacity: 0.6;
    }
    90% {
        transform: scale(1.1) translate(180%, -30px);
        opacity: 0.3;
    }
    100% {
        transform: translate(190%, -200px);
        opacity: 0;
    }
}


#homesvg2 {
    
    animation: 60s dotmove2 ease-in-out infinite;
    height: 25vh;
    overflow: hidden;
    
}

@keyframes dotmove2 {
0% {
        transform: translate(400%, 150px);
        opacity: 0;
    }
    
    
    50% {
        transform: translate(-40%, 110px) scale(1.3) rotate(360deg);
        opacity: 1;
    }
    60% {
        transform: translate(-100%, 70px) scale(1.1);
        opacity: 1;
    }
    80% {
        transform: scale(1.2) translate(200%, -170px) rotate(-120deg);
        
        opacity: 0.6;
    }
    100% {
        transform: translate(230%, -200px);
        opacity: 0.5;
    }
}

#homesvg3 {
    
    animation: 55s dotmove3 ease-in-out infinite;
    height: 23vh;
    overflow: hidden;
    
}

@keyframes dotmove3 {
    0% {
        transform: translate(-200%, -200px);
        opacity: 0;
        
    }
    
    
    50% {
        transform: translate(0%, -90px) scale(1.3) rotate(180deg);
        opacity: 1;
        
    }
    70% {
        transform: translate(110%, 70px) scale(1);
        opacity: 1;
    }
    85% {
        transform: scale(1.1) translate(60%, -50px) rotate(-120deg);
        
        opacity: 0.6;
    }
    100% {
        transform: translate(120%, -200px);
        opacity: 0.5;
    }
}


#homesvg4 {
    display: none;
    animation: 45s dotmove3 ease-in-out infinite;
    height: 20vh;
    overflow: hidden;
    
    
}

@keyframes dotmove4 {
    0%  {
        opacity: 0;
        transform: translate(10%, 90px);
    }
    30% {
        transform: translate(20%, 80px);
        opacity: 0.7;
        transform: scale(1.3);
    }
    80% {
        transform: translate(30, -50px);
        opacity: 0.5;
    }
    
    100% {
        transform: translate(50%, -10px);
        opacity: 0;
    }
}

#homesvg5 {
    display: none;
    animation: 30s dotmove3 ease-in-out infinite;
    height: 20vh;
    overflow: hidden;
    
}

@keyframes dotmove5 {
    0%  {
        opacity: 0;
        transform: translate(0%, 0px);
    }
    20% {
        transform: translate(0%, 20px);
        opacity: 0.7;
    }
    60% {
        transform: translate(0, -50px);
        opacity: 0.5;
    }
    80% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translate(50%, -80px);
        opacity: 0;
    }
}

#audio-container {
    
    width: calc(100% - 40px);
    margin: 20px;
}

#audio-text {
    width: calc(100% - 40px);
    
    margin: 20px;
    min-height: 80px;
    height: auto;

}

#playlistbtn {
    width: 60px;
    height: 25px;
    border: 1px solid lime;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #212121;
}

#playlistbtn:hover {
    background-color: lime;
    border: 1px solid yellow;
    color: deeppink;
}

#playlist {
    
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px double whitesmoke;
    width: calc(100% - 40px);
    margin: 20px;
    border-radius: 7px;
}



#playlist li {
    list-style-type: none;
    
}

.songtitle {
    font-size: 16px;
    text-align: center;
    
}

.smalltext {
    font-size: 13px;
    color: yellow;
}

#achtergrond {
    padding: 5px 12px;
}

#kleur {
    padding: 5px 12px;
}

#font {
    padding: 5px 12px;
}

#header-text {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    margin: 0;
    line-height: 1;
    display: grid;
    padding: 10px;
    grid-column: 2;
    color: yellow;
    text-shadow:
    1px 1px 0 black,
    -1px 1px 0 black,
    1px -1px 0 black,
    -1px -1px 0 black;
}


#sidebar {
    color: steelblue;
    grid-area: sidebar;
    padding: 0;
    align-content: center;
}

#video {
    grid-area: video;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
    
}



#foto {
    grid-area: foto;
    
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
}

#show-text {
    display: none;
    background-color: red;
    font-size: 13px;
    color: white;
    z-index: 1000;
    position: fixed;
    top: 15%;
    right: 15%;
    padding: 10px;
    text-align: center;
    width: 40vw;
    transition: 0.7s ease-in-out;
    
}

.settingbtn {
    width: 40%;
    height: 50px;
    margin: 10px 4% 10px 4%;
    border-radius: 10px;
    border: 2px solid lime;
    font-weight: bold;
    padding: 0;
}

.settingbtn:hover {
    border: 2px solid red;
    cursor: grab;
}

#songtextBtn {
    position: relative;
    align-self: right;
    padding: 3px;
    margin: 12px;
}

.songtext {
    display: flex;
    align-content: center;
    justify-content: center;
    height: auto;
    width: 40vw;
    overflow: hidden;
}
#songtextopen {
    display: none;
    

}

#songtextopen img {
    width: 100%;
    height: auto;

}

.paragraaf {
    text-align: center;
}

#paard {
    grid-area: cookies;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
    margin-top: 7px;
    justify-self:flex-start;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 200%;
    background-image: url(../img/1909.jpg);
    background-size: 120px 120px;
    background-position: 0px -20px;
    background-repeat: no-repeat;
    border-radius: 50%;
    transform-origin: 50% 50%;
    z-index: 10;
    border: 2px solid deeppink;
}

#paard:hover { 
    cursor: pointer;
    z-index: 10;
    border: 2px solid lime;
}

#settings {
    grid-area: cookies;
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 0;
    justify-self:center;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 250%;
    
}
.skrew {
    display: inline-block;
    transform-origin: 50% 55%;
    transition: transform 0.5s ease-in-out;
}

#settings:hover .skrew {
    cursor: pointer;
    animation: 3s turn ease-in-out forwards;
}

@keyframes turn {
    from {transform: rotate(0);}
    to {transform: rotate(360deg);}
}


#peace-center {
    letter-spacing: 7px;
    font-size: 24px;
}


#cookies {
    grid-area: cookies;
    
    width: 60px;
    height: 60px;
    justify-self: end;
    display: block;
    align-content: center;
    text-align: center;
    font-size: 250%;
}

#cookies:hover {
    color: red;
    cursor: pointer;
}


#show-text svg {
  display: block;
  margin: 0 auto;
}

.p-hoofdstuk {
    color: whitesmoke;
    text-align: center;
    font-size: 20px;
    font-weight: normal;
    text-decoration: underline;
    text-decoration-color: red;
    text-underline-offset: 7px;

}

.p-text {
    color: black;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 20px;
    background-color: rgba(245, 245, 245, 0.5);
    position: relative;
}

.hover-word {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-style: dotted;
    text-decoration-color: darkturquoise;
    text-decoration-thickness: 2px;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.tooltip {
    visibility: hidden;
    width: 200px;
    background-color: #212121;
    color: yellow;
    font-weight: lighter;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;

}

.hover-word:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.p-slottext {
    color: red;
    background-image: linear-gradient(to right, lime, aqua, lime);
    padding: 7px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

#good-practises {
    text-shadow: 
    1px 1px 2px #212121,
    -1px -1px 2px #212121;
    text-align: center;
    font-weight: bold;
    font-style: italic;
    color: yellow;
    padding: 20px;
}

#grid_base .moving-container {
    position: sticky;
    bottom: 0;
    z-index: 10;
    
    padding: 12px;
    margin: 20px 20px 0px 20px;
    border-radius: 12px;
    background-color: transparent;
    overflow: hidden;
    width: calc(100% - 40px);
}

.moving {
  animation: move 20s linear infinite;
  width: max-content;
  display: flex;
  white-space: nowrap;
  
}

.moving span {
    font-size: 2rem;
    margin: 0 50px;

}

@keyframes move {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


#imagebox {
    width: 100%;
    height: 50px;
    overflow: hidden;
    margin-left: auto;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

#imagebox img {
    width: 50px;
    height: 50px;
    align-self: center;
}

#linkedin a {
    text-align: center;
    width: 100%;
    padding: 12px 5px 5px 5px;
    color: red;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: lime;
    
}




h1 {
    box-shadow: 5px #333333;
    grid-template-columns: 10% 1fr 10%;
    text-align: center;
    grid-area: header;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    align-content: center;
    line-height: 1; /*dit zet de h1 straight bovenin of gelijk aan waarde in grid-template-rows voor dit element, dus 70px*/
}

#grid_base {
    grid-area: grid_base;
    width: 100%;
    min-height: 100%;
    background-image: url('home/img/meppel.jpg'); 
    background-position: center;
    background-size: cover;
    transition: opacity 4s ease-in-out; 
    
    opacity: 1;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    background-repeat: no-repeat;
    align-items: start;
    background-color: #212121;
}

.fade {
    opacity: 0;
}





.html-list {
    padding: 3px;
    background-color: transparent;
    
    margin: 0;
}

.html-list:hover {
    background-color: transparent;
}

.html-list h4 {
    
    margin: 0;
}



ul {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

li {
    padding: 7px 10px;
    list-style-type: symbols(✨);
}

li:hover {
    background-color: transparent;
    
    
}

.center {
    
    font-size: 1em;
    margin-bottom: 0.2em;
    
}

.center-text {
    font-size: 11px;
    color: #212121;
    text-shadow: 
    1px 1px 1px yellow;
    margin: 0;
    padding: 0;
}


#grid_egel {
    border-radius: 7px;
    border: 1px transparent;
    grid-area: grid_egel;
    width: 70%;
    height: auto;
    transition: 0.7s ease-in-out;
    align-content: center;
    text-align: center;
    margin: 0px 5px;
    background-color: darkturquoise;
    font-size: 200%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: end;
}

#grid_egel:hover {
    
    border: 1px solid yellow;
    transform: scale(1.4) translateX(-20px) translateY(12px);
    background-image: url(../img/egel.jpg);
    background-position: center;
    background-size: cover;
    z-index: 1000;
    
}

#grid_egel:hover .center {
    display: none;
}
#grid_egel:hover .center-text {
    position:absolute;
    top: 0;
    right: 0;
    margin-bottom: 0.2em;
    font-size: 8px;
    background-color: rgba(21,21,21,0.7);
    color: yellow;
    padding: 3px;
    text-shadow: none;
    transform: translateX(-10px) translateY(12px) rotate(20deg);
     transform-origin: right top;
}

#grid_natuur {

    grid-area: grid_natuur;
    width: 70%;
    height: auto;
    transition: 0.7s ease-in-out;
    align-content: center;
    text-align: center;
    margin: 0px 5px;
    background-color: yellow;
    font-size: 200%;
    border: 1px solid transparent;
    border-radius: 7px;
    /* Zorgt dat het grid-item rechts in de cel staat */
    justify-self: end;
}



#grid_natuur:hover {
    border: 1px solid lime;
    transform: scale(1.4) translateX(-20px) translateY(0px);
    background-image: url(../img/vleer1.jpg);
    background-position: center;
    background-size: cover;
    z-index: 1000;
    
}

#grid_natuur:hover .center {
    display: none;
}
#grid_natuur:hover .center-text {
    position:absolute;
    top: 0;
    right: 0;
    margin-bottom: 0.2em;
    background-color: rgba(21,21,21,0.7);
    color: lime;
    text-shadow: none;
    padding: 3px;
     transform: translateX(-10px) translateY(20px) rotate(20deg);
     transform-origin: right top;
   
}

#grid_grachten {
    border-radius: 7px;
    border: 2px transparent;
    grid-area: grid_grachten;
    width: 70%;
    height: auto;
    margin: 0px 5px;
    transition: 0.7s ease-in-out;
    align-content: center;
    text-align: center;
    margin: 0px 5px;
    background-color: deeppink;
    color:aqua;
    font-size: 200%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: end;
    align-items: center;
}

#grid_grachten:hover {
    border: 2px solid aqua;
    transform: scale(1.4) translateX(-20px) translateY(0px);
    background-image: url(../mov/vlaggen.gif);
    background-position: center;
    background-size: cover;
    z-index: 1000;
    
}

#grid_grachten:hover .center {
    display: none;
}
#grid_grachten:hover .center-text {
    position:absolute;
    top: 0;
    right: 0;
    margin-bottom: 0.2em;
    background-color: rgba(21,21,21,0.7);
    color: whitesmoke;
    text-shadow: none;
    padding: 3px;
     transform: translateX(-10px) translateY(12px) rotate(20deg);
     transform-origin: right top;
}

#grid_wandelen {
    border-radius: 7px;
    border: 2px transparent;
    grid-area: grid_wandelen;
    width: 70%;
    height: auto;
    margin: 0px 5px;
    transition: 0.7s ease-in-out;
    animation-delay: 0s;
    align-content: center;
    text-align: center;
    margin: 0px 5px;
    background: lime;
    color:#F4EBD0;
    font-size: 200%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: end;
    align-items: center;
}

#grid_wandelen:hover {
    border: 2px solid #F4EBD0;
    transform: scale(1.4) translateX(-20px) translateY(-12px);
    background-image: url('../img/wandelen.jpg');
    background-position: center;
    background-size: cover;
    z-index: 1000;
    
}

#grid_wandelen:hover .center-text {
    position:absolute;
    top: 0;
    right: 0;
    margin-bottom: 0.2em;
    background-color: #212121;
    color: #F4EBD0;
    text-shadow: none;
    padding: 3px;
     transform: translateX(-10px) translateY(12px) rotate(20deg);
     transform-origin: right top;
}

.walk {transition: none; position: relative;}

#grid_wandelen:hover .walk {
    animation: 17s gowalk forwards;
}

@keyframes gowalk {
    0% {left: 0%; opacity: 10;}
    50% {left: -50vw; opacity: 0.7; font-size: 50%;}
    100% {left: -110vw; opacity: 0.3; font-size: 30%;}
}


 
.dolfijn-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  overflow: visible; 
}

.dolfijn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  align-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3em; /* bepaal de grootte van het icoon */
  z-index: 1;
  padding: 0;
  margin: 0;
}

.dolfijn.animate {
  animation: koprol 5s ease-out;
  animation-delay: 4s;
}

@keyframes koprol {
  0%   { z-index: 1000; transform: translateY(0) rotate(0deg) scale(1); }
  60% {z-index: 1000; transform: translateY(-350px) rotate(640deg) scale(3);}
  100% { z-index: 1000; transform: translateY(0) rotate(720deg) scale(1); }
}


.popup {
    position: fixed;
    top: 77%;
    left: 60%;
    background: deeppink;
    border: 2px solid yellow;
    color: #212121;
    padding: 7px;
    display: none;
    z-index: 100;
    animation: 2s skew ease-out forwards;
    animation-delay: 1s;

}

.popup1 {
    position: fixed;
    top: 70%;
    left: 60%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    background: yellow;
    border: 1px solid lime;
    color: darkturquoise;
    padding: 5px;
    display: none;
    z-index: 100;
    animation: 5s skew1 ease-out forwards;
    animation-delay: 1s;
    text-align: center;
    font-style: italic;
}

@keyframes skew {
    to {transform:scale(1.1); }
}

@keyframes skew1 {
    60% {
        transform:translateX(-100px) scale(2.0);
         background-color: darkturquoise;
         border: 1px solid lime;
         color: deeppink;
        text-shadow: 
        1px 1px 0 black,
        -1px 1px 0 black,
        1px -1px 0 black,
        -1px -1px 0 black;
        }
    60% {
        opacity: 0.8;
    }
    70% {opacity: 0.5;}
    80% {translate: scale(0.7); opacity: 0.2;}

    100% {translate: scale(0.2); opacity: 0;}
}


#mail {
    
    display: inline-block;
    align-content: center;
    text-align: center;
    cursor:text
}

#mail-text {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 30px;
    padding: 10px;
    background-image: linear-gradient(#333333, #212121, #333333);
    color: whitesmoke;
    text-align: center;
    width: 30vw;
    font-size: 14px;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    align-self: center;
}

#footer {
    grid-area: footer;
    display: grid;
    grid-template-columns: 60% 10% 30%;
    text-align: left;
    align-content: center;
    padding: 0;
    background-image: linear-gradient(#333333, #212121, #212121, #212121);
    border: 1px solid transparent;

}

#footer:hover {
    border-top: 1px solid yellow;
    border-radius: 0;
}

#footertext {
    font-size: 12px;
    color: rgb(236, 230, 230, 0.4);
    width: 30%;
    padding: 5px;
    margin: 0;
    text-align: center;;
    align-content: space-evenly;
    background: none;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: currentColor;
}

#footertext:hover {
    background: linear-gradient(to right, red, yellow, green);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: background 0.5s;
}

@media only screen and (max-width:600px) and (orientation:portrait) {

    body,html {
        overflow-y: auto;
        overflow-x: hidden;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        /*font-family: 'Lucida Console', Monaco, monospace;*/
    }

    #huh {display: none;}
    

    #homesvg1, #homesvg2, #homesvg3 {
        height: 12vh;
    }

    .container {
    background-color: #212121;
    margin-left: auto;
    margin-right: auto;
    width: 100vw;
    height: auto;
    margin: 0;
    display: grid;
    overflow: hidden;
    grid-template-areas: 
        "open-sidebar cookies"
        "header header"
        "video foto"
        "grid_base grid_base" 
        "grid_natuur grid_grachten"
        "grid_egel grid_wandelen"
        "footer footer";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 50px 50px 120px auto 100px 100px 70px;
    column-gap: 10px;
    row-gap: 10px;
    align-content: center;
    border-radius: 0px;
    place-content: center;
    }

    #video {
        margin-left: 10px;
        width: calc(100% - 10px);
        border-radius: 7px;
    }

    #foto {
        margin-right: 10px;
        width: calc(100% - 10px);
        border-radius: 7px;
    }

    #image-box img {
    margin: 20px;
    width: 250px;
    height: 250px;
    border-radius: 50%;

}

    #grid_base {
        height: auto; 
        padding: 0;
        min-height: 40vh;
        overflow: hidden;
        width: 100vw;
        max-width: 100%;
        background-size:cover;
        background-position:center;
        background-color: #212121;
        background-attachment: scroll;
        background-repeat: repeat;

    }

    .hover-word {
        text-decoration-color: deeppink;
    }

  
 .tooltip {
    width: auto;
    max-width: 80vw; /* max 80% van schermbreedte */
    left: 50%; /* midden uitlijnen */
    margin-left: 0; /* geen negatieve marge */
    transform: translateX(-50%);
    white-space: normal; /* tekst afbreken */
    word-wrap: break-word;
    bottom: 150%;
    font-size: 12px; /* iets kleiner voor mobiel */
    padding: 5px;

  }



    


    #cookies {
        display: flex;
        position: flex-end;
        width: 50px;
        height: 50px;
        align-items: center;
        justify-content: center;
        margin-right: 5%;
    }

    #settings {
        display: flex;
        width: 51px;
        height: 51px;
        align-items: center;
        justify-content: center;
        position: center;
        justify-self: center;

    }

    .skrew {
    display: inline-block;
    transform-origin: 52% 47%;
    transition: transform 0.5s ease-in-out;
}

.center-text {
    font-size: 14px;
    color: yellow;
    text-shadow: 
    1px 1px 0 black,
    -1px 1px 0 black,
    1px -1px 0 black,
    -1px -1px 0 black;
    margin: 0;
    padding: 0;
}

.popup1 {
    font-size: 14px;
    font-style: italic;
    color: deeppink;
    border: transparent;
    background-color: yellow;
}

#playlist {
    border: none;
    
}

.songtext {
        width: 75vw;
        margin-left: 0;
        
    }

#songtextopen img {
    width: 100%;
}

    @keyframes koprol {
  0%   { z-index: 1000; transform: translateY(0) rotate(0deg) scale(1); }
  60% {z-index: 1000; transform: translateY(-450px) rotate(640deg) scale(3);}
  100% { z-index: 1000; transform: translateY(0) rotate(720deg) scale(1); }
}

    #paard {
        display: flex;
        grid-area: cookies;
        position: flex-start;
        height: 50px;
        width: 50px;
        margin-left: 8%;
        margin-top: 3px;
        border: none;
        background-color: transparent;
    }

    .open-sidebar {
        width: 50vw;
        position: fixed;
        top: 0;
        left: 0;
        height: 50px;
        background-color: transparent;
        /*background-image: linear-gradient(rgba(21,21,21,0));*/
        color: lime;
        border-bottom: 0.5px solid transparent;
        
        font-size: 170%;
        z-index: 1000;
        transition: background-image 0.5s;
    }

    .open-sidebar:hover {
        background-image: linear-gradient(rgba(21,21,21,0.6));
        border-bottom: 0.5px solid  whitesmoke;
        transition-delay: 0.2s;
        
    }
    

    .sidebar-overlay {
        top: 110px;
        

    }

    .sidebar-overlay.open {
        width: 50vw;
        overflow-x: hidden;
        padding: 24px 16px 16px 16px;
    }

    
    .sidebar-overlay button {
        color: lime;
        background-color: #212121;
        border: 1px solid whitesmoke;
        padding: 5px;
        width: auto;
    }

    .menu-content {
        margin: 0;
    }

    #grid_egel {
    border-radius: 12px;
    border: 3px solid lime;
    grid-area: grid_egel;
    width: 90%;
    height: auto;
    align-content: center;
    text-align: center;
    margin: 10px auto;
    background-image: url(../img/egel.jpg);
    background-position: center;
    background-size: cover;
    font-size: 200%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: end;
    animation: none;
}

#grid_egel:hover {
    transform: none;
}

#grid_grachten {
    border-radius: 12px;
    border: 3px solid lime;
    grid-area: grid_grachten;
    width: 90%;
    height: auto;
    align-content: center;
    text-align: center;
    margin: 10px auto;
    background-image: url(../img/FJ11.jpg);
    background-position: center;
    background-size: cover;
    font-size: 200%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: end;
    animation: none;
}

#grid_grachten:hover {
    border: 3px solid yellow;
    transform: none;
}

#grid_wandelen {
    border-radius: 12px;
    border: 3px solid lime;
    grid-area: grid_wandelen;
    width: 90%;
    height: auto;
    align-content: center;
    text-align: center;
    margin: 10px auto;
    background-image: url(../img/wandelen.jpg);
    background-position: center;
    background-size: cover;
    font-size: 200%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: end;
    animation: none;
}

#grid_wandelen:hover {
    border: 3px solid yellow;
    transform: none;
}

#grid_natuur {
    border-radius: 12px;
    border: 3px solid lime;
    grid-area: grid_natuur;
    width: 90%;
    height: auto;
    align-content: center;
    text-align: center;
    margin: 10px auto;
    background-image: url(../img/vleer1.jpg);
    background-position: center;
    background-size: cover;
    font-size: 200%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: end;
    animation: none;
}

#grid_natuur:hover {
    border: 3px solid yellow;
    transform: none;
}

#grid_natuur:hover .center-text {display: none;}
#grid_egel:hover .center-text {display: none;}
#grid_grachten:hover .center-text {display: none;}
#grid_wandelen:hover .center-text {display: none;}

#show-text {
    top: 60px;
    right: 50px;
    background-image: linear-gradient(rgba(21,21,21,04));
    color: lime;
}

#footer {
    grid-template-columns: 45% 10% 45%;
}

#footertext {
    width: 100%;
}

#mail-text {
    width: 42%;
    height: 40px;
    padding: 5px;
    font-size: 11px;
    bottom: 15px;
    right: 3px;
    text-align: right;

}

    
    
}

@media only screen and (max-width: 900px) and (orientation:landscape) {


body, html {
    overflow-y: hidden;
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-image: none;
}
.container {
    background-color: #212121;
    background-image: none;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-areas: 
        
        "grid_base" ;
        
    grid-template-columns: 1fr;
    
    grid-template-rows: 100vh;
    column-gap: 0px;
    row-gap: 0px;
    align-content: center;
    justify-content: center;
    border-radius: 0px;
    place-content: center;
    }

#grid_base {
    grid-area: grid_base;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    background-size:contain;
    background-position:center;
    background-repeat: no-repeat;
    background-color: #212121;
    }

#image-box img {width: 350px; height: 350px;}

#settings {display: none;}
#cookies {display: none;}
#footer {display: none;}
#header-text {display: none;}
#paard {display: none;}
.open-sidebar {display: none;}



#grid_egel {
    
    border-radius: 12px;
    border: 3px solid lime;
    grid-area: grid_egel;
    width: 90%;
    height: auto;
    align-content: center;
    text-align: center;
    margin: 10px auto;
    background-image: url(../img/egel.jpg);
    background-position: center;
    background-size: cover;
    font-size: 200%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: end;
    animation: none;
}

#grid_egel:hover {
    transform: none;
}

#grid_grachten {
    display: none;
    border-radius: 12px;
    border: 3px solid lime;
    grid-area: grid_grachten;
    width: 90%;
    height: auto;
    align-content: center;
    text-align: center;
    margin: 10px auto;
    background-image: url(../img/FJ11.jpg);
    background-position: center;
    background-size: cover;
    font-size: 200%;
    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: end;
    animation: none;
}

#grid_grachten:hover {
    border: 3px solid yellow;
    transform: none;
}

#grid_wandelen {
    display: none;
    border-radius: 12px;
    border: 3px solid lime;
    grid-area: grid_wandelen;
    width: 90%;
    height: auto;
    align-content: center;
    text-align: center;
    margin: 10px auto;
    background-image: url(../img/wandelen.jpg);
    background-position: center;
    background-size: cover;
    font-size: 200%;
    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: end;
    animation: none;
}

#grid_wandelen:hover {
    border: 3px solid yellow;
    transform: none;
}

#grid_natuur {
    display: none;
    border-radius: 12px;
    border: 3px solid lime;
    grid-area: grid_natuur;
    width: 90%;
    height: auto;
    align-content: center;
    text-align: center;
    margin: 10px auto;
    background-image: url(../img/vleer1.jpg);
    background-position: center;
    background-size: cover;
    font-size: 200%;
    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: end;
    animation: none;
}

#grid_natuur:hover {
    border: 3px solid yellow;
    transform: none;
}

#grid_natuur:hover .center-text {display: none;}
#grid_egel:hover .center-text {display: none;}
#grid_grachten:hover .center-text {display: none;}
#grid_wandelen:hover .center-text {display: none;}

#show-text {
    display: none;
    top: 60px;
    right: 50px;
    background-image: linear-gradient(rgba(21,21,21,04));
    color: lime;
}

#homesvg1, #homesvg2, #homesvg3 {
        display: none;
    }

#video {
    display: none;
        margin-left: 20px;
        margin-right: 20px;
        width: calc(100% - 40px);
        border-radius: 7px;
        max-height: 100px;
    }

#foto {
        display: none;
        margin-right: 20px;
        margin-left: 20px;
        width: calc(100% - 40px);
        border-radius: 7px;
        max-height: 100px;
    }

.sidebar-overlay.open {
    width: 40vw;
    display: none;
}

.open-sidebar {
        width: 40vw;
        position: fixed;
        top: 0;
        left: 0;
        height: 50px;
        background-color: transparent;
        /*background-image: linear-gradient(rgba(21,21,21,0));*/
        color: lime;
        border-bottom: 0.5px solid transparent;
        font-size: 170%;
        z-index: 1000;
        transition: background-image 0.5s;
    }

    .open-sidebar:hover {
        background-image: linear-gradient(rgba(21,21,21,0.6));
        border-bottom: 0.5px solid  whitesmoke;
        transition-delay: 0.2s;
        
    }
    

    .sidebar-overlay {
        top: 40px;
        

    }

}

@media only screen and (min-width: 601px) and (max-width: 900px) and (orientation: portrait) {
    body, html {
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
.container {
    background-color: #212121;
    width: 100vw;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-areas: 
        "open-sidebar cookies"
        "header header"
        "grid_base grid_base"
        "grid_natuur grid_grachten"
        "grid_egel grid_wandelen"
        "video foto" 
        "footer footer";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    column-gap: 10px;
    row-gap: 10px;
    align-content: center;
    border-radius: 0px;
    place-content: center;
    }

.open-sidebar {
        width: 40vw;
        position: fixed;
        top: 0;
        left: 0;
        height: 50px;
        background-color: transparent;
        /*background-image: linear-gradient(rgba(21,21,21,0));*/
        color: lime;
        border-bottom: 0.5px solid transparent;
        
        font-size: 170%;
        z-index: 1000;
        transition: background-image 0.5s;
    }

    .open-sidebar:hover {
        background-image: linear-gradient(rgba(21,21,21,0.6));
        border-bottom: 0.5px solid  whitesmoke;
        transition-delay: 0.2s;
        
    }
    

    .sidebar-overlay {
    top: 60px;
        

    }   

#grid_base {
    padding: 0;
    min-height: 40vh;
    height: auto;
    background-size:cover;
    background-position:center;
    background-color: #212121;
    background-attachment: scroll;
    background-repeat: repeat;
    width: calc(100vw - 40px);
    margin-left: 20px;
    margin-right: 20px;
    

    }

#grid_egel {
    border-radius: 12px;
    border: 3px solid lime;
    grid-area: grid_egel;
    width: 90%;
    height: auto;
    align-content: center;
    text-align: center;
    margin: 10px auto;
    background-image: url(../img/egel.jpg);
    background-position: center;
    background-size: cover;
    font-size: 200%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: end;
    animation: none;
}

#grid_egel:hover {
    transform: none;
}

#grid_grachten {
    border-radius: 12px;
    border: 3px solid lime;
    grid-area: grid_grachten;
    width: 90%;
    height: auto;
    align-content: center;
    text-align: center;
    margin: 10px auto;
    background-image: url(../img/FJ11.jpg);
    background-position: center;
    background-size: cover;
    font-size: 200%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: end;
    animation: none;
}

#grid_grachten:hover {
    border: 3px solid yellow;
    transform: none;
}

#grid_wandelen {
    border-radius: 12px;
    border: 3px solid lime;
    grid-area: grid_wandelen;
    width: 90%;
    height: auto;
    align-content: center;
    text-align: center;
    margin: 10px auto;
    background-image: url(../img/wandelen.jpg);
    background-position: center;
    background-size: cover;
    font-size: 200%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: end;
    animation: none;
}

#grid_wandelen:hover {
    border: 3px solid yellow;
    transform: none;
}

#grid_natuur {
    border-radius: 12px;
    border: 3px solid lime;
    grid-area: grid_natuur;
    width: 90%;
    height: auto;
    align-content: center;
    text-align: center;
    margin: 10px auto;
    background-image: url(../img/vleer1.jpg);
    background-position: center;
    background-size: cover;
    font-size: 200%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: end;
    animation: none;
}

#grid_natuur:hover {
    border: 3px solid yellow;
    transform: none;
}

#grid_natuur:hover .center-text {display: none;}
#grid_egel:hover .center-text {display: none;}
#grid_grachten:hover .center-text {display: none;}
#grid_wandelen:hover .center-text {display: none;}

#show-text {
    top: 60px;
    right: 50px;
    background-image: linear-gradient(rgba(21,21,21,04));
    color: lime;
}

#homesvg1, #homesvg2, #homesvg3 {
        display: none;
    }

#video {
        margin-left: 20px;
        margin-right: 20px;
        width: calc(100% - 40px);
        border-radius: 7px;
    }

#foto {
        margin-right: 20px;
        margin-left: 20px;
        width: calc(100% - 40px);
        border-radius: 7px;
    }
.sidebar-overlay.open {
    width: 40vw;
}
}

