* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

picture,
picture img {
  width: 100%;
  height: 100%;
}

picture img {
  object-fit: cover;
  display: block;
}

/* Invisible email link (DESKTOP default) */
.email-link {
  position: absolute;
  left: 20%;
  top: 91%;
  width: 0%;
  height: 0%;
  cursor: pointer;
}

/* MOBILE adjustment */
@media (max-width: 768px) {
  .email-link {
    left: 30%;
    top: 80%;
    width: 0%;
    height: 0%;
  }
}

/* DEBUGGING: Highlight the email link area */
.email-link {
  background: rgba(255, 0, 0, 0.3);
}