* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: #ffffff;
}

body {
  display: flex;
  justify-content: center;
  font-family: Arial, sans-serif;
}

.holding-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: #ffffff;
}

.art-wrap {
  position: relative;
  width: min(100%, 1024px);
  margin: 0 auto;
}

.art-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

/* Clickable email hotspot over the email address in the approved artwork. */
.email-link {
  position: absolute;
  left: 35%;
  top: 65.1%;
  width: 30%;
  height: 4.2%;
  z-index: 2;
  border-radius: 8px;
}

.email-link:focus {
  outline: 3px solid rgba(198, 151, 77, .9);
  outline-offset: 2px;
}

@media (min-width: 1025px) {
  body {
    background: #eceae5;
  }

  .holding-page {
    width: 1024px;
    box-shadow: 0 0 30px rgba(0,0,0,.12);
  }
}
