html, body {
    width: 100%;
    text-decoration: none;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

button {
    all: unset;
}

#bgwrapper {
    position: relative;
    width: 100vw; 
    height: 100vh;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}

#bgwrapper .fillbg {
    position: absolute;
    height: auto;
    width: 100%;
    display: block;
    margin-top: auto;
}


/* Title stuff */
#title {
    position: absolute;
    text-align: right;
    right: 0px;
    top:0px;
    z-index: 40;
    padding-right: 10px;
    padding-top: 10px;
    background-color: transparant;  
}
#title h1 {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
}

#title:hover #description{
    display: block;
}

#title:hover{
    background-image: linear-gradient(to left, white , rgba(255, 255, 255, 0.034));
    padding-bottom: 10px;
}

#description {
    display: none;
}

#description p {
    margin: 0;
    font-weight: 500;  
    letter-spacing: 0.0em; 
}

#base_tree1, #base_tree2, #base_tree3, #base_lantaarn, #extra_people_im {
    left: -400px;
}

#base_tree4, #base_bankje {
    left: 400px;
}

#base_lift {
    left: 400px;
}


.noload {
    opacity: 0;
}

area {
    cursor: pointer;
    display:block;
}

#fgwrapper {
    position: absolute;
    align-items: center; 
    overflow: hidden;
}

.arrow {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4;
}

td {
    padding-left:10px
}
.poem {
    font-style: italic;
}

/* Partly in popup.css */
.popuptext {
    white-space: pre-line;
}

.ode {
    text-align: center;
    font-style: italic;
}

.overlayflexer {
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.overlayflexer > div {
    width: 49%;
}

.overlayheadimg_small {
    /* border: 2px solid green; */
    position: relative;
    width: 50%;
    margin-left: 25%;
}

@keyframes airlift {
    0% {transform: translateY(0%); } 
    10% {transform: translateY(0%); } 
    40% {transform: translateY(-50%);} 
    50% {transform: translateY(-50%);} 
    100% {transform: translateY(0%); } 
}

@keyframes airlift-twice {
    0% {transform: translateY(0%); } 
    2.5% {transform: translateY(0%); } 
    10% {transform: translateY(-50%);} 
    12.5% {transform: translateY(-50%);} 
    25% {transform: translateY(0%); } 
    50% {transform: translateY(0%); } 
    52.5% {transform: translateY(0%); } 
    60% {transform: translateY(-50%);} 
    62.5% {transform: translateY(-50%);} 
    75% {transform: translateY(0%); } 
    85% {transform: translateY(0%); } 
    87.5% {transform: translateY(-50%); } 
    97.5% {transform: translateY(-50%); } 
    100% {transform: translateY(0%); } 
}




.airlift_infinite {
    /* display: inline-block; */
        animation: airlift 22s infinite;
    }
  
    
.airlift_once {
/* display: inline-block; */
    animation: airlift 14s;
}

.airlift_twice {
    /* display: inline-block; */
        animation: airlift-twice 56s;
    }
  
