* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: #090909;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  display: grid;
  place-items: center;
  padding: 14px;
}

.page {
  position: relative;
  width: min(100%, 1100px);
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(0,0,0,.65));
}

.letterhead {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}

.hotspot {
  position: absolute;
  display: block;
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hotspot:hover,
.hotspot:focus {
  background: rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 0 0 2px rgba(255,255,255,.25);
  outline: none;
}

/* Coordinates are percentages based on your uploaded letterhead image.
   Adjust these if you want the clickable areas moved. */
.logo-link {
  left: 11%;
  top: 3.5%;
  width: 36%;
  height: 15%;
}

.instagram-link {
  left: 13%;
  top: 87%;
  width: 24%;
  height: 2.2%;
}

.email-link {
  left: 13%;
  top: 84.2%;
  width: 24%;
  height: 2.2%;
}

.home-link {
  left: 13%;
  top: 86.1%;
  width: 24%;
  height: 2.2%;
}

.mobile-links {
  display: none;
}

@media (max-width: 720px) {
  body {
    padding: 0;
    background: #f2eee4;
  }

  .page {
    width: 100%;
    filter: none;
  }

  .mobile-links {
    display: grid;
    gap: 10px;
    padding: 16px;
    background: #0b0b0b;
  }

  .mobile-links a {
    display: block;
    color: #f3eee3;
    border: 1px solid #777;
    text-decoration: none;
    padding: 13px 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
  }
}
