.contact {
  text-align: center;
  font-weight: bold;
  text-decoration: underline;
  color: red;
  /* padding: 3rem; */
  /* border: 2px solid #000; */
}

.contact .h1 {
  /* margin-bottom: 1.5rem; */
}

.image {
  display: flex;
  justify-content: center;
  height: 50vh;
}

img {
  max-height: 100%;
  overflow: hidden;
  width: auto;
}

.text {
  text-align: center;
}

main {
  display: block;
  margin: 0 25%;
  margin-bottom: 20vh;
}

@media screen and (max-width: 768px) {
  .image {
    height: auto;
    max-width: 100%;
    overflow: hidden;
  }

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

  main {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 0 1rem;
  }

  figure {
    width: 100%;
    margin: 0;
  }

  p a:nth-of-type(2) {
    color: red;
  }
}
/* =========================================
   BLUR LOAD
========================================= */

.blur-load {
  filter: blur(16px);
  transition: filter 0.35s ease-out, opacity 0.35s ease-out;
  opacity: 0.85;
  will-change: opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.blur-load.loaded {
  filter: blur(0);
  opacity: 1;
}

