html {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 101vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

a {
  color: black;
}

.menu {
  width: 900px;
  margin: 2em auto 3em auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.menu-home {
  font-size: 25px;
}

.menu a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
}

.menu-active a, .menu a:hover  {
  text-shadow: 0 0 0.1px black;
}

.insta svg {
  fill: rgba(0, 0, 0, 0.4);
  vertical-align: bottom;
}

.insta svg:hover {
  fill: rgba(0, 0, 0, 0.6);
}

.content {
  max-width: 1000px;
  margin: auto;
  flex: 1;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
}

.content-home {
  text-align: justify;
}

.content-contact{
  flex-direction: row;
  align-items: center;
}

.content-photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
  position: relative;
}

.photo-wrapper {
  box-sizing: content-box;
  max-width: 29%;
  padding: 1em 0;
}

.photo-thumb {
  width: 100%;
}

.photo-zoom{
  opacity: 0;
  position: absolute;
  display: flex;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  transform: scale(0.29);
  z-index: 1;
  background-color: rgba(255, 255, 255, .7);
  transition: all .5s;
  will-change: padding, transform;
}

.photo-wrapper:nth-child(1) .photo-zoom{
  transform-origin: 0% 0%;
  padding-top: 4em;
  align-items: flex-start;
}

.photo-wrapper:nth-child(2) .photo-zoom{
  transform-origin: 50% 0%;
  padding-top: 4em;
  align-items: flex-start;
}

.photo-wrapper:nth-child(3) .photo-zoom{
  transform-origin: 100% 0%;
  padding-top: 4em;
  align-items: flex-start;
}

.photo-wrapper:nth-child(4) .photo-zoom{
  transform-origin: 0% 50%;
  align-items: center;
}

.photo-wrapper:nth-child(5) .photo-zoom{
  transform-origin: 50% 50%;
  align-items: center;
}

.photo-wrapper:nth-child(6) .photo-zoom{
  transform-origin: 100% 50%;
  align-items: center;
}

.photo-wrapper:nth-child(7) .photo-zoom{
  transform-origin: 0% 100%;
  padding-bottom: 4em;
  align-items: flex-end;
}

.photo-wrapper:nth-child(8) .photo-zoom{
  transform-origin: 50% 100%;
  padding-bottom: 4em;
  align-items: flex-end;
}

.photo-wrapper:nth-child(9) .photo-zoom{
  transform-origin: 100% 100%;
  padding-bottom: 4em;
  align-items: flex-end;
}

.photo-wrapper.zoom .photo-zoom {
  opacity: 1;
  padding: 4em;
  transform: scale(1);
  z-index: 2;
}

.photo-large {
  width: 100%;
}

.illustration-item {
  margin-bottom: 1em;
}

.illustration-item > a {
  font-size: 1.6em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

@media (max-width: 680px), screen and (orientation: portrait) {
  body {
    min-height: 90vh;
  }

  .menu {
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin: 1em 0;
    height: 4em;
    overflow: hidden;
    will-change: height;
    transition: .7s height;
  }

  .menu.open {
    height: 16em;
  }

  .menu::before {
    content: "Menu";
    line-height: 2em;
    align-self: flex-start;
    margin-left: 1em;
  }

  .menu-item {
    height: 2em;
    line-height: 2em;
    margin: 0;
  }

  .menu-home {
    height: 1.3em;
    line-height: 1.3em;
  }

  .insta {
    position: fixed;
    top: 1em;
    right: 1em;
  }

  .content {
    width: 100%;
    padding: 1em;
  }
  .photo-wrapper.zoom .photo-zoom {
    padding: 1em;
  }

  .image-plainpicture {
    width: 100%;
    height: auto;
  }
 
  .image-renting-art {
    width: 56%;
  }

  .content-contact img {
    width: 100%;
    height: auto;
  }
}