body {
  margin: 0;
  font-family: "Unica77 LL";
  display: flex;
}

* {
   font-family: "Unica77 LL";
}

.sidebar {
  margin: 0;
  padding: 0;
  width: 500px;
  background-color: transparent;
  position: fixed;
  height: 100%;
  overflow: auto;
  box-sizing: border-box;
}

.sidebar a {
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  font-size: 29px;
  display: block;
  color: black;
  padding: 0;
  text-decoration: none;
}
 
.sidebar a.active {
  font-style: normal;
  font-size: 39px;
  font-weight: 400;
  line-height: 39px;
  background-color: transparent;
  color: #000;
}

.content {
  margin-left: 600px;
  padding: 1px 16px;
  height: 100%;
  box-sizing: border-box;
}

.highlight {
  background-color: black;
  color: white;
}

/* Image styles */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.content img {
  margin: 10px 0;
}

/* For image galleries or multiple images */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

/* Hamburger menu (hidden by default) */
.menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  body {
    display: block;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .sidebar {
    width: 100%;
    position: fixed;
    top: 0;
    left: -100%; /* Hidden by default */
    height: 100vh;
    background-color: white;
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 70px 0 0 0;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  }
  
  .sidebar.open {
    left: 0; /* Show sidebar when open */
  }
  
  .content {
    margin-left: 0;
    padding: 70px 16px 1px;
    width: 100%;
    box-sizing: border-box;
  }
}

/* Tablet styles */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .sidebar {
    width: 300px;
  }
  
  .content {
    margin-left: 400px;
  }
}

/* Very small screens */
@media screen and (max-width: 480px) {
  .content {
    padding: 70px 16px 1px;
  }
}