body {
  overflow-x: hidden;
}

header {
  height: 4vh;
}

/*Navigation*/

nav {
  justify-content: flex-start;
  padding: 2vh 0;
}

#logo {
  font-size: calc(1.6rem + 1vw);
  width: 80%;
}

#hamburger {
  width: 20%;
  padding: 2vh 3vw;
  display: flex;
  justify-content: flex-end;
}
nav svg {
  cursor: pointer;
  z-index: 3;
}

.links {
  position: absolute;
  background: white;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 1vh 0 15vh 0;
  transform: translateX(100%);
}

nav ul li {
  font-size: var(--link-mobile);
  margin: auto;
}

.link-active {
  font-weight: normal;
  border-style: none;
}

/*Gallery flexbox*/

.gallery img {
  width: 95%;
  height: auto;
}
.image-gallery .popup-image img {
  width: 95%;
}

/*Gallery Grid-box*/

.grid-wrapper .wide {
  grid-column: span 1;
}

.grid-wrapper .tall {
  grid-row: span 2;
}

.grid-wrapper .big {
  grid-column: span 1;
  grid-row: span 1;
}

.image-gallery-grid .popup-image img {
  width: 95%;
}

/*Footer*/

.copyright p {
  padding: 0 3vw 0 0;
}
