html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background: #000;
}

#background {
  position: fixed;
  width: 100%;
  height: 100%;
  background:white;
  padding: 0;
  margin: 0;
}

#resizable {
  position: absolute;
  top: 0;
  left: 0;
  width: 700px;
  height: 380px;
  background: white;
  resize: both;
  overflow: auto;            
  border: 0.5px solid black;
  box-sizing: border-box;
  z-index: 1000;
  padding: 0 0 0 0;       
  margin: 0;
  min-width: 120px;         
  min-height: 80px;
}

/* 박스 안의 콘텐츠 */
#content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 18px;
  font-weight: 3;
  text-align: center;
  padding-top: 0;
  margin: 0;
}

/* 점 */
.dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: black;
  z-index: 2000;
  transform: translate(-50%, -50%);
}

#svg-container {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: auto;
  opacity: 1;
  z-index: 9999;
}

#svg-container svg {
  width: 100%;
  height: auto;
  display: block;
  z-index: 9999;
}

#content {
  position: absolute;
  width: calc(100% - 8px); 
  text-align: center;
  z-index: 10;
  pointer-events: auto;    
}

#gif-layer {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: auto;
  z-index: 5000;
  display: none; 
}

#gif-layer img {
  width: 100%;
  height: auto;
  display: block;
}

#content {
  white-space: pre-line;
}
