* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: Helvetica, sans-serif;
  letter-spacing: normal;
  background-color: white;
  width: 100%;
}

button {
  background-color: black;
  border: none;
  color: white;
  padding: 32px 32px;
  text-decoration: bload;
  font-size: 20px;
  cursor: pointer;
}


h1 {
  font-size: 20px;
  font-style: italic;
}

h2 {
  font-size: 20px;
  font-weight: bold;
  color: gray;
}




div.storkasse {
  background-color: white;
  width: 90%;
  max-width: 80%;
  overflow: auto;
  height: 15%;
  margin: 0 auto 19px auto;
}

div.storkasse2 {
  background-color: white;
  width: 90%;
  max-width: 80%;
  overflow: auto;
  height: 15%;
  margin: 0 auto 19px auto;
  display: none;
}

div.lillekasse {
  width: 30%;
  float: left;
  margin-left: 30px;
  display: block;
}

div.lillekasse-2 {
  width: 33%;
  margin-top: 30px;
  margin-left: 10%;
}

div.lillekasse-3 {
  width: 70%;
  margin-top: 30px;
  margin-left: 10%;
  display: block;
}

div.megetlillekasse {
  width: 10%;
  margin-top: 5px;
  margin-left: 2%;
  float: left;
  display: block;
}

div.lillekasse-4 {
  width: 60%;
  margin-top: 5px;
  margin-left: 2%;
  float: left;
  display: block;

}

div.slideshow {
    display: flex;
    align-items: center;    /* vertically center */
    justify-content: center; /* optional: centers slides+buttons */
    gap: 10px;              /* optional: space between spans */
}




/* ===========================
   MEDIA ELEMENTS
   =========================== */
img, video {
  display: block;
  margin: auto;
  vertical-align: middle;
  height: 85vh;
  border-bottom: solid transparent;
  border-color: white;
}











/* ===========================
   MENU / NAVIGATION
   =========================== */
ul {
  writing-mode: vertical-rl;
  float: right;
  list-style-type: none;
  width: 20%;
}

li {
  writing-mode: vertical-rl;
  display: inline;
  width: 100%;
  background-color: #000;
  color: #fff;
  font-size: 60px;
}

li:hover {
  background-color: #fff;
  color: black;
}

.active {
  background-color: white;
  color: black;
  opacity: 100%;
}

a:link, a:visited {
  color: white;
  text-decoration: none;
}

a:hover {
  color: black;
  text-decoration: none;
}

a:active {
  color: black;
  background-color: transparent;
  text-decoration: underline;
}




/* ===========================
   RESPONSIVE / MOBILE
   =========================== */
@media only screen and (max-width: 600px) {
    div.lillekasse {
    width: 90%;
    float: left;
  }

  button {
  background-color: black;
  border: 8px 8px 8px 8px;
  color: white;
  padding: 8px 8px;
  text-decoration: bload;
  font-size: 16px;
  cursor: pointer;
}

  ul {
    width: 60%;
    font-size: 130%;
    writing-mode: horizontal-tb;
    float: left;
    margin-top: 10%;
  }

  li {
    writing-mode: horizontal-tb;
    display: inline;
    float: left;
    margin-top: 1%;
  }

  .container, .container2 {
    position: relative;
    width: 100%;
    height: auto;        /* let container grow */
  }

  .slideshow1, .slideshow2 {
    position: relative;
    width: 100%;
    height: auto;        /* proportional height */
  }

  img, video {
    width: 100%;
    height: auto;        /* maintain aspect ratio */
    display: block;
  }

  /* clickable left/right overlay */
  .prev, .next {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;       /* full container height */
    cursor: pointer;
    z-index: 10;
  }

  .prev { left: 0; }
  .next { right: 0; }


  body {
    background-color: white;
    align-items: center;
  }
  div.lillekasse-2 {
    width: 80%;
    float: left;
  }

    .lillekasse-4,
    .megetlillekasse {
        display: none;
    }

    .storkasse {
        display: block;
    }
