body {
  margin: 0;
  overflow: hidden;
  font-family: 'Georgia', serif;
  background-color: black;
}

#container {
  position: relative;
  width: 100vw;
  height: 100vh;
}

#background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6) contrast(1.2);
}

#attackCanvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#log {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  max-width: 300px;
  font-size: 14px;
  border-left: 3px solid #8e44ad;
  z-index: 2;
}

