html {
  background-color: #FFFFFF;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/************** End CSS Reset **************/

/************ Fonts ************/
@font-face {
  font-family: "Hypermarket-Regular";
  src: url(fonts/Hypermarket-Regular.ttf) format("truetype"),
  url(fonts/Hypermarket-Regular.woff) format("woff"),
  url(fonts/Hypermarket-Regular.eot) format("embedded-opentype");
  }
  
@font-face {
  font-family: "Hypermarket-Light";
  src: url(fonts/Hypermarket-Light.ttf) format("truetype"),
  url(fonts/Hypermarket-Light.woff) format("woff"),
  url(fonts/Hypermarket-Light.eot) format("embedded-opentype");
    }

@font-face {
    font-family: "Hypermarket-Exp";
      src: url(fonts/Hypermarket-Exp.ttf) format("truetype"),
      url(fonts/Hypermarket-Exp.woff) format("woff"),
      url(fonts/Hypermarket-Exp.eot) format("embedded-opentype");
        }

body {
font-family: Hypermarket-Light;
}

/********************************************* Navigation Bar ********************************************************/

ul {
  background-color: white;
  font-family: Hypermarket-Exp;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 25%;
  height: 100vh; /* Full height */
position: fixed; /* Make it stick, even on scroll */
text-align: center;
flex-direction: column;
align-content: flex-start;
overflow-y: scroll;
}

#logo {
  width:100%;
  height:100%;
  margin-top: 2%;
}

.nav-description {
  font-family: Hypermarket-Regular;
  margin-top: 15%;
  margin-bottom: 15%;
  margin-left: 3%;
  margin-right: 3%;
  font-size: calc(0.9vw + 0.9vh);
} 

.linepattern {
font-size: calc(0.6vw + 0.6vh);
white-space: nowrap;
}

li a {
  display: block;
  color: #000;
  padding: 5%;
  margin: 2%;
  text-decoration: none;
  border: 1px solid black;
  text-align: center;
  font-size: calc(1.1vw + 1.1vh);
  transition: background-color 0.3s ease-in-out;
  }

/* Change the active button color on view */
li a:hover:not(.active) {
  background-color: #555;
  color: white;
  cursor: pointer;
}

li a.active {
  background-color: black;
  color: white;
  cursor: pointer;
}

  .overview-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}
  /********************************************* Overview Paragraphs ********************************************************/

  .overviewtext {
    font-family: Hypermarket-Light;
    font-size: calc(0.9vw + 0.9vh);
    text-align: left;
    margin-left: 30%;
    width: 35%;
    padding-top: 3%;
    height: 100vh;
    overflow-y: scroll;
  }

  /********************************************* Overview Images ********************************************************/
  .overviewimages {
    position: absolute;
    top: 1%;
    right: 0;
    width: 25%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
  }
  
  .overviewimages img {
    width: 95%;
    height: auto;
    cursor: pointer;
  }

  #scanner {
   width: 110%
  }
