.content {
  display: grid;
  margin: auto;
  margin-right: 0;
  margin-bottom: 100px;
  width: 80%;
  grid-template-columns: 5% 35% 10% 50%;
  grid-template-rows: repeat(auto-fit, minmax(80px, auto));
}

.content img {
  filter: grayscale(100%) drop-shadow(0px 0px 1px rgba(0, 0, 0, .3)) drop-shadow(0px 0px 10px rgba(0, 0, 0, .3));
}

.image1 {
  grid-area: 2 / 2 / 3 / 4;
  place-items: start center;
}

.image2 {
  grid-column: 3 / 5;
  grid-row: 1 / 4;
  background-color: rgba(255, 255, 255, 0.8);
  place-items: start center;
}

img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.name {
  display: grid;
  grid-area: 2 / 1 / 2 / 1;
  background-color: rgba(255, 255, 255, 0.8);
  place-items: center center;
}

.name p {
  writing-mode: vertical-lr;
  transform: rotate(-180deg);
  font-size: 1.8vw;
  color: #a7a7a7;
}

.quote {
  grid-area: 3 / 2 / 3 / 2;
  grid-template-rows: 50% 50%;
  background-color: rgba(255, 255, 255, 0.8);
  padding-top: 1vw;
  line-height: 1.5;
  text-align: right;
  padding-right: 2vw;
  color: #a7a7a7;
  font-size: 1.5vw;
}

.quote img {
  max-width: 2.2vw;
  float: right;
  padding-right: 0.38em;
  filter: none;
}

#icons {
  display: flex;
  margin-top: 0.8em;
  margin-bottom: .3em;
  float: right;
}

#icons a {
  padding-left: 1vw;
}

.contact {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  bottom: 8ex;
  margin-top: 2em;
  line-height: 1.5;
}

.contact a {
  text-align: right;
  float: right;
  color: #696969;
  padding-right: 0.3em;
}

#content-wrap {
  width: 100%;
  padding-bottom: 16ex;
  overflow: auto;
}

/* old contact */

/* .contact {
  position: absolute;
  bottom: 8ex;
  margin-top: 2em;
  line-height: 1.5;
  display: grid;
  grid-area: 4 / 4;
  place-items: end end;
  padding: 10px;
  color: darkgray;
} */

.content a {
  color: #696969;
}

@media only screen and (max-width: 1325px) {
  .image2 {
    visibility: hidden;
    height: 0;
    width: 0;
  }
  .image1 {
    object-fit: cover;
    width: 100%;
  }
  .contact {
    font-size: 0.9em;
    padding-bottom: 0.5em;
  }
  .content {
    display: flex;
    overflow: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    padding: 0;
    margin: 0 auto;
  }
  .name p {
    margin-top: 1em;
    writing-mode: unset;
    transform: rotate(0);
    font-size: 5vw;
    color: #a7a7a7;
  }
  .quote p {
    text-align: center;
    font-size: 3vw;
  }
  .quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
  }
  #icons {
    text-align: center;
    padding-top: 10px;
    display: flex;
    margin-top: 0.8em;
    margin-bottom: .3em;
    float: left;
  }
  #icons a {
    display: block;
    width: 100%;
    padding-left: 3vw;
  }
  #icons a img {
    width: 100%;
  }
  .quote img {
    max-width: 100%;
  }
}