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

html,
body {
  background: #000;
  height: 100%;
  overflow: hidden;
  width: 100%;
}

#creative-container {
  left: 0;
  position: absolute;
  top: 0;
}

#creative-container img,
#creative-container video {
  display: block;
  transform-origin: top left;
}

#messages-log {
  background: rgb(0 0 0 / 85%);
  border-radius: 5px;
  color: #fff;
  font: 11px monospace;
  left: 10px;
  max-height: 300px;
  overflow-y: auto;
  padding: 10px;
  position: fixed;
  top: 10px;
  width: 400px;
  z-index: 9999;
}

#messages-log h1 {
  border-bottom: 1px solid rgb(255 255 255 / 30%);
  color: #ff0;
  font-size: 12px;
  margin-bottom: 8px;
  padding-bottom: 5px;
}

.message-entry {
  background: rgb(255 255 255 / 10%);
  border-radius: 3px;
  font-size: 10px;
  margin: 5px 0;
  overflow-wrap: anywhere;
  padding: 5px;
  white-space: pre-wrap;
}

#debug-info {
  bottom: 0;
  color: #ff0;
  position: absolute;
}
