* {
  box-sizing: border-box;
}

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

body {
  background: #c9232c;
  font-family: Arial, Helvetica, sans-serif;
}

.maintenance-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5vw;
}

.artwork {
  position: relative;
  width: min(100%, 1667px);
  line-height: 0;
}

.artwork img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/*
  La imagen original mide 1667 x 1000 px.
  Las posiciones se expresan como porcentajes para que los enlaces
  sigan exactamente a los textos cuando la imagen se reduzca.
*/

.contact-link {
  position: absolute;
  display: block;
  z-index: 2;
  cursor: pointer;
}

/* marketing@disegnosoft.com.ar */
.email-marketing {
  left: 66.6%;
  top: 57.0%;
  width: 18.4%;
  height: 3.0%;
}

/* cursos@disegnosoft.com.ar */
.email-cursos {
  left: 66.6%;
  top: 59.3%;
  width: 17.3%;
  height: 3.0%;
}

/* ventas@disegnosoft.com.ar */
.email-ventas {
  left: 66.6%;
  top: 61.7%;
  width: 16.8%;
  height: 3.0%;
}

/* +54 9 11 2842-1898 */
.whatsapp {
  left: 72.2%;
  top: 66.0%;
  width: 13.1%;
  height: 3.4%;
}

.contact-link:focus-visible {
  outline: 3px solid #1976d2;
  outline-offset: 2px;
  border-radius: 3px;
}

@media (max-width: 700px) {
  .maintenance-page {
    padding: 12px;
  }

  .artwork img {
    border-radius: 8px;
  }
}
