    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      min-height: 100vh;
      display: flex;
      position:relative;
      flex-direction: column;
      background-image: url('baggrund.jpg');
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
   }

    /* HEADER */

    header {
      background: #000000;
      color: white;
      text-align: center;
      position: relative;
      max-width: 1024px;
      width: 100%;
      margin: auto;
    }
    
    .header_text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 250%;
    }

    .read_bible {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 2.3vw;
    }


    /* NAV */

    nav {
      background: #000000;
      max-width: 1024px;
      width: 100%;
      margin: auto;
    }

    nav ul {
      display: flex;
      justify-content: center;
      list-style: none;
      flex-wrap: wrap;
    }

    nav a {
      color: #ffffff;
      text-decoration: none;
      padding: 2px 10px;
      display: block;
    }

    nav a:hover {
      color: #000000;
      background-color: #eeeeee;
   }

    /* HAMBURGER */

    .menu-toggle {
      display: none;
      color: white;
      font-size: 2rem;
      padding: 5px 25px;
      cursor: pointer;
    }

    /* MAIN LAYOUT */
    .side_body {
      flex: 1;
      background: rgb(249,237,206,0.8);
      max-width: 1024px;
      width: 100%;
      margin: auto;
      padding: 10px;
    }

    .container {
      display: flex;
      flex: 1;
      gap: 20px;
      max-width: 1024px;
      width: 80%;
      min-height: 65vh;
      margin: auto;
      padding: 20px;
    }

    main {
      flex: 3;
      background: white;
      padding: 10px;
      border-radius: 10px;
    }

    mainx {
      flex: 3;
      background: rgb(255,255,244,0.0);
      padding: 20px;
      border-radius: 10px;
    }

    aside {
      flex: 1;
      background: white;
      padding: 20px;
      border-radius: 10px;
    }

    /* FOOTER */
    footer {
      background: #000000;
      color: white;
      text-align: center;
      padding: 2px;
      max-width: 1024px;
      width: 100%;
      margin: auto;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
    }
    .book{
      display: flex;
      flex: 1;
      gap: 20px;
      background: white;
      padding: 10px;
      border-radius: 10px;
    }

    .box_width {
      border-radius:10px;
      width: 450px;
    }

    .bigbox_width {
      width: 600px;
      max-width: 60vw;
    }

    .fieldset {
    border: #000011 3px solid;
    background-color: #ffffff;
    opacity: 1;
    border-radius:8px;
    }

    #vers {
      background-color: #fbfbfb;
      position: fixed;
      left: 220px;
      top: 30px;
      width: 100%
      padding: 0px;
      color: black;
      border: #000000 1px solid;
      display: none;
      box-shadow: 0px 0px 8px 0px;
      -webkit-animation: fadeIn 1s;
      animation: fadeIn 1s;
      font-size: 16px;
    }

    #verstop {
      width: 100%
      cursor: move;
      padding: 0px;
      color: #ffffff;
      font-weight: bold;
      font-size: 24px;
      background-color: #000000;
    }


    /* MOBIL */

    @media (max-width: 1000px) {
      .read_bible {
        font-size: 4.5vw;
      }

    .box_width {
        width: 440px;
      }

      #vers {
        left: 100px;
      }

      .bigbox_width {
        max-width: 80vw;
      }
    }

    @media (max-width: 768px) {

    .book{
      flex-direction: column;
      background: white;
      padding: 6px;
      border-radius: 10px;
    }

    .read_bible {
        font-size: 5.6vw;
      }

      #verstable {
        width: 200px;
      }

      .smallbox_width {
        width: 120px;
      }

      #vers {
        left: 20px;
      }

      .box_width {
        width: 90%;
      }

      .bigbox_width {
        max-width: 60vw;
      }
      .header_text {
        font-size: 140%;
      }
      
      .container {
        flex-direction: column;
      }

      .menu-toggle {
        display: block;
      }

      nav ul {
        display: none;
        flex-direction: column;
      }

      nav ul.active {
        display: flex;
      }

      nav a {
        border-top: 1px solid #777575;
      }
     
     #imgbible{ 
      height: 200px;
      } 
    }
