
html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

.site-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #ffffff;
}

.site-canvas {
  position: relative;
  width: min(100vw, 1536px);
  line-height: 0;
  background: #ffffff;
  overflow: hidden;
}

.site-canvas img {
  display: block;
  width: 100%;
  height: auto;
}

.hotspot {
  position: absolute;
  display: block;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  text-indent: -9999px;
  overflow: hidden;
  line-height: 1;
}

.hotspot:focus {
  outline: 2px solid rgba(255, 90, 36, 0.95);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .site-canvas {
    width: 100vw;
  }
}
