/* ----Fonts imported---- */
/* Arboria */
@import url("https://use.typekit.net/ixp7wky.css");

/* ITC Avant Garde Gothic */
@import url("https://use.typekit.net/ixp7wky.css");

/* Dejanire Headline */
@import url("https://use.typekit.net/ixp7wky.css");

/* Basic Sans */
@import url("https://use.typekit.net/ixp7wky.css");

/* ---- Layout and all ---- */
html{
    scroll-behavior: smooth;
}

body {
    height: 100%;
}

.containerbg {
    background-image: url(Assets/Prototype_Setup.jpg);
    /* min-height: 1000px; */
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 0px;
    background-attachment: fixed;
    background-size: contain;
   

    background-color: rgb(255, 255, 255);
    padding: 700px 0px 0px 0px;
    width: 100%;
    position: relative;
    height: auto;
}

.container {
    background-color: rgb(255, 255, 255);
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 100px;
    max-width: 1400px;
}

.content {
    max-width: 1300px;
}

.contentjunior {
    max-width: 1300px;
    padding: 60px;
}

h1 {
    color: rgb(0, 0, 0);

    font-family: "basic-sans", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 50px;
    margin: 50px;

    text-align: center;
}

h2 {
    color: rgb(0, 0, 0);

    font-family: "basic-sans", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 30px;
    margin: 50px;

    text-align: center;
}

h3 {
    color: rgb(0, 0, 0);

    font-family: "basic-sans", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 25px;
    margin: 50px;

    text-align: center;
}

p {
    color: rgb(100, 100, 100);

    font-family: "arboria", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    margin: 40px;

    text-align: justify;
}

figure {
    max-width: 1000px;
    margin: auto;
    background-color: rgb(255, 255, 255);
}

video {
    width: 100%;
    height: auto;
    /* display: block; */
    padding: 10px;
}

img {
    width: 100%;
    height: auto;
    /* padding: 10px; */
}

.specialpadding {
    padding: 10px;
}

figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* button styling */
button {
    border: none;
    background: transparent;
    cursor: pointer;
    margin: 10px;
    font-size: 1.5rem;
}

.forbook {
    transition: transform 0.5s;
}

button:focus {
    outline: none;
}

button:hover {
    color: rgb(106, 106, 106);
}

/* i{
    font-size: 50px;
} */

progress {
    width: 100%;
    height: 20px;
    margin: 0 10px;
}

progress[value] {
    appearance: none;
}

progress[value]::-webkit-progress-value {
    background-color: rgb(136, 136, 136);
}

progress[value]::-moz-progress-bar {
    background-color: rgb(136, 136, 136);
}

.bottommenu {

    background-color: white;
    height: 150px;
    overflow: auto;
    white-space: nowrap;

    font-family: "basic-sans", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 20px;
    margin: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.bottommenu a {
    /* display: inline-block; */
    
    color: black;
    text-align: center;
    padding: 14px;
    text-decoration: none;
}

.bigger-hr {
    border: none;
    height: 4px;
    width: 1300px;
    background-color: rgb(128, 128, 128);
    margin: 50px auto;
    border-radius: 10px;
}

.smaller-hr {
    border: none;
    height: 2px;
    width: 500px;
    background-color: rgb(128, 128, 128);
    margin: 50px auto;
    border-radius: 5px;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

/* .material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
} */

/* flipbook (context) */

.bookcontext {
    margin: 30px;
    box-sizing: border-box;

    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book {
    /* border: 1px solid black; */
    position: relative;
    width: 500px;
    height: 607px;
    transition: transform 0.5s;
    /* box-shadow: 0 10px 20px rgb(111, 111, 111); */
}

.paper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    perspective: 1500px;
}

/* .left-page,
.right-page{
    box-shadow: 0 10px 20px rgb(111, 111, 111);
} */

.front {
    z-index: 1;
    backface-visibility: hidden;
    border-left: 2px solid rgb(120, 120, 120);
}

.back {
    z-index: 0;
}

.front,
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-origin: left;
    transition: transform 0.5s;
    box-shadow: 0 10px 10px rgba(151, 151, 151, 0.577);
}

.back-content {
    transform: rotateY(180deg);
}

/* flipped effect */
.flipped .front,
.flipped .back {
    transform: rotateY(-180deg);
}

.front-content,
.back-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Paper stack */
#p1 {
    z-index: 4;
}

#p2 {
    z-index: 3;
}

#p3 {
    z-index: 2;
}

#p4 {
    z-index: 1;
}

/* user manual gallery */
div.scroll-container {
    /* background-color: #bbbbbb; */
    overflow: auto;
    white-space: nowrap;
    padding: 5px 10px 10px 10px;
    margin: auto;
    max-width: 400px;

    border: 2px solid black;
  }
  
  div.scroll-container img {
    padding: 10px;
  }

  