* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  color: #AD9872;
  font-family: sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 16px 48px;
}

#home-link {
  margin-top: 200px;
  font-size: 0.75rem;
}

#home-link a {
  color: #7A6358;
  text-decoration: none;
}

#home-link a:hover {
  color: #AD9872;
}

#stage {
  width: 500px;
}

.scene {
  position: relative;
  width: 500px;
  height: 300px;
  flex-shrink: 0;
}

.scene img {
  display: block;
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

.scene img.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
}

.hotspots {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 300px;
  overflow: visible;
}

[data-target] {
  cursor: pointer;
}

.sidebar {
  width: 100px;
  flex-shrink: 0;
  padding-top: 4px;
  font-size: 0.8rem;
  line-height: 1.6;
}

.sidebar a {
  color: #738B63;
}

.sidebar a:visited {
  color: #B8ABA5;
}

.sidebar a:active {
  color: #53B53E;
}

.sidebar .copyright {
  display: block;
  margin-top: 12px;
  font-size: 0.65rem;
  color: #7A6358;
}

/* Crane composite layout */
.crane-scene {
  position: relative;
  width: 500px;
  height: 300px;
  flex-shrink: 0;
}

.crane-scene img.layer {
  position: absolute;
  display: block;
}

/* Success / text states */
.text-state {
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-size: 1rem;
  line-height: 1.6;
}

.text-state a {
  color: #738B63;
  margin-top: 16px;
  display: inline-block;
}
