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;
}

  .right-content {
    margin-left: 25%; /* Adjust this value to match the width of the navigation bar */
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.column {
    width: 48%; 
    font-family: Hypermarket-Light;
    font-size: calc(0.9vw + 0.9vh);
    text-align: left;
}

.column img{
    width: 100%;
    height: auto;
    cursor: pointer;
}

.dot {
  height: 1vh;
  width: 1vw;
  margin: 0.2vw;
  position: relative;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}


