* {
    margin: 0%;
    padding: 0%;
    font-family: 'Brush Script MT', cursive, 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.scene {
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    /* background-color: rgb(34, 33, 33); */
}

.hidden {
    display: none;
}

.logo {
    background-color: white;
    padding: 2px;
    box-sizing: border-box;
}

#splashScreen {
    background-image: url("small/flowers.JPG");
    background-size: cover;
}

.gallery ul {
    /* background-color: hsla(0, 0%, 0%, 0.385); */
    padding-left: 10px;
    padding-right: 10px;
}

#splashScreen .logo {
    max-width: 100%;
    max-height: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.header, .footer {
    height: 1cm;
    position: fixed;
    display: block;
    width: 100%;
}

.header {
    top: 0%;
}

.footer {
    bottom: 0%;
    width: 100%;
}

.header .logo {
    max-width: 100%;
    max-height: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery {
    position: fixed;
    top: 1cm;
    bottom: 1cm;
    overflow: scroll;
    height: calc(100% - 2cm);
}   

ul {
    display: flex;
    flex-wrap: wrap;		
    /* height: calc( 100% - 2cm); */
    height: fit-content;
    list-style: none;
    /* gap: 0.5cm; */
    /* column-gap: 0.5cm; */
}
      
li {
    height: 40vh;
    flex-grow: 1;
    position: relative;
}
      
li img {
    max-height: 100%;
    min-width: 100%;
    object-fit: cover;
    /* vertical-align: bottom; */
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

li:last-child {
    flex-grow: 10;
}

p.info {
    display: none;
    margin-bottom: 0%;
}

li:hover p.info {
    display: inherit;
    position: absolute;
    bottom: 0px;
    background-color: #00000085;
    color: white;
    width: 100%;
    height: 40%;
    text-align: center;
}

#hamburger-menu {
    z-index: 3;
    width: calc( 1cm - 2px);
    height: calc( 1cm - 2px);
    display: block;
    border: none;
    padding: 0px;
    margin-top: 1px;
    margin-bottom: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
      to bottom, 
      #3D0E61, #3D0E61 20%, 
      white 20%, white 40%, 
      #3D0E61 40%, #3D0E61 60%, 
      white 60%, white 80%, 
      #3D0E61 80%, #3D0E61 100%
    );
}

#fog {
    background-color: rgba(0, 0, 0, 0.50);
}

.xmenubar {
    background-color: white;
    width: 100%;
    height: fit-content;
    padding: 0.5cm;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5vh;
    /* max-width: 15cm; */
    max-height: 70%;
    overflow-y: auto;
    font-family: 'Brush Script MT', cursive, 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    border-top-left-radius: 0.5cm;
    border-top-right-radius: 0.5cm;
    border-color: black;
    border-style: solid;
    border-bottom-style: none;
    box-sizing: border-box;
    animation-name: floatUp;
    animation-duration: 0.5s;
}

@keyframes floatUp {
    from { bottom: -100%; }
    to { bottom: 0%;}
}

.newsbar, .menubar {
    background-color: white;
    width: 100%;
    height: fit-content;
    padding: 0.5cm;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* max-width: 15cm; */
    max-height: 70%;
    overflow-y: auto;
    border-radius: 0.5cm;
    border-color: white;
    border-style: solid;
    box-sizing: border-box;
    animation-name: floatToMiddle;
    animation-duration: 0.5s;
    max-width: 15cm;
}

@keyframes floatToMiddle {
    from { top: 100%; }
    to { top: 51%; }
}

.menubar p {
    display: block;
    position: relative;
    margin: auto;
    background-color: white;
    color: black;
    width: fit-content;
    font-size: xx-large;
    padding: 0.5cm;
    margin-top: 0.5cm; 
    margin-bottom: 0.5cm;
    width: 10cm;
    max-width: calc(100% - 1cm);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 0.5cm;
    text-align: center;
}

.menubar p:hover {
    background-color: gray;
    color: white;
}

.expandable {
    border-style: groove;
    border-radius: 5px;
    padding: 0.25cm;
}
.expandable:hover {
    background-color: gray;
    color: white;
    border-color: black;
}

.expandable .collapsable {
    display: none;
    font-size: x-large;
}

.expandable[x-collapsed="1"]::after {
    content: "Klik om meer te zien...";
}

.expandable[x-collapsed="0"] .collapsable {
    display: initial;
}


#about div {
    background-image: linear-gradient(silver, silver), url("big/female.svg");
    /* background-image: url("female.svg"); */
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    background-color: white;
    width: 100%;
    max-width: 15cm;
    height: fit-content;
    max-height: 80%;
    /* filter: invert(1) */
    /* text-decoration-color: aqua; */
    background-blend-mode: hard-light;
    /* backdrop-filter: ; */
    padding: 0.5cm;
    border-radius: 0.5cm;
    animation-name: floatToMiddle;
    animation-duration: 0.5s;
    font-size: x-large;
}

#about span {
    font-size: xx-large;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pendingMessageCounter {
    display: inline-block;
    width: 0.5cm;
    height: 0.5cm;
    border-radius: 0.25cm;
    background-color: rgb(215, 94, 12);
    color: yellow;
    border-style: solid;
    border-color: rgb(215, 94, 12);
    position: absolute;
    top: 0px;
    right: 0px;
    transform: translate(50%, -50%);
    animation-name: blowUp;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-delay: 20s;
    font-size: xx-small;
    line-height: 0.5cm;
}
  
@keyframes blowUp {
    /* 0% { width: 0.5cm; height: 0.5cm; border-radius: 0.25cm; font-size: xx-small; line-height: 0.5cm }
    50% { width: 1cm; height: 1cm; border-radius: 0.5cm; font-size: large; line-height: 1cm } */

    0% { width: 0.5cm; height: 0.5cm; border-radius: 0.25cm; font-size: xx-small; line-height: 0.5cm }
    2.5% { width: 1cm; height: 1cm; border-radius: 0.5cm; font-size: large; line-height: 1cm }
    5% { width: 0.5cm; height: 0.5cm; border-radius: 0.25cm; font-size: xx-small; line-height: 0.5cm }
    7.5% { width: 1cm; height: 1cm; border-radius: 0.5cm; font-size: large; line-height: 1cm }
    10% { width: 0.5cm; height: 0.5cm; border-radius: 0.25cm; font-size: xx-small; line-height: 0.5cm }
}

#modal img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader{
    display: block;
    position: relative;
    height: 12px;
    width: 80%;
    border: 1px solid #fff;
    border-radius: 10px;
    overflow: hidden;
    background-color: black;
  }

  .loader:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #FF3D00;
    animation: 6s prog ease-in infinite;
  }

  .verkocht {
    background-color: rgba(0, 0, 0, 0.25);
    color: white;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    font-size: larger;
    width: 100%;
    text-align: center;
}
  
  @keyframes prog {
    to  {   width: 100%;}
  }
  
  
  @keyframes animloader {
    0% {
      box-shadow: 14px 0 0 -2px,  38px 0 0 -2px,  -14px 0 0 -2px,  -38px 0 0 -2px;
    }
    25% {
      box-shadow: 14px 0 0 -2px,  38px 0 0 -2px,  -14px 0 0 -2px,  -38px 0 0 2px;
    }
    50% {
      box-shadow: 14px 0 0 -2px,  38px 0 0 -2px,  -14px 0 0 2px,  -38px 0 0 -2px;
    }
    75% {
      box-shadow: 14px 0 0 2px,  38px 0 0 -2px,  -14px 0 0 -2px,  -38px 0 0 -2px;
    }
    100% {
      box-shadow: 14px 0 0 -2px,  38px 0 0 2px,  -14px 0 0 -2px,  -38px 0 0 -2px;
    }
  }
@media (max-aspect-ratio: 1/1) {
    li {
        height: 30vh;
    }
}
@media (max-height: 480px) {
    li {
      height: 80vh;
    }
  }

  @media (max-aspect-ratio: 1/1) and (max-width: 480px) {
    ul {
      flex-direction: row;
    }
  
    li {
      height: auto;
      width: 100%;
    }
  
    li img {
      width: 100%;
      max-height: 75vh;
      min-width: 0;
    }
  }