.map-title{
  font-size: large;
  margin:auto;
}
.descbox {
  background-color: DodgerBlue;
  background-color: #f1f1f1;
  padding: 3px;
  margin: 3px;
}

.card-header h3{
  margin-bottom:0px;
}

.desc-screenshot{
  width:100%;
}

.gamemap {
  position: relative;
  display: inline-block;
  width: 100%; /* Ensure container takes full width */
  margin-top: 10px;
}

.gamemap img {
  width: 100%;
  height: auto;
  margin: 0 0 30px 0;
}

.overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
}
.overlay.rectangle {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 30%;
}

.overlay.rectangle.side{
  width: 100px;
  height: 50px;
  background-color:rgba(119, 71, 71, 0.65)
}

.overlay.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1em;
}

.overlay.circle-medium {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.9em;
  background-color:rgba(237, 100, 130, 0.65)
}

.overlay.circle-small {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8em;
  background-color:rgba(237, 19, 237, 0.5);
}

.overlay:hover::after {
  content: attr(data-text);
  position: absolute;
  background-color: black;
  color: white;
  padding: 5px;
  border-radius: 3px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 1;
  z-index: 100;
}

.section {
  margin-top: 1000px; /* Adjust according to your needs */
  padding: 50px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
}


.image{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  max-width: 100%;
  height: auto;
}

.multi-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.multi-images {
  max-width: 100%;
  height: auto;
  margin: 0 10px; /* 이미지 사이에 간격을 주기 위해 추가 */
}

.hidden {
  visibility: hidden;
  opacity: 0;
}

/* Media Queries for responsive design */
@media (max-width: 768px) {
  .overlay.rectangle {
      width: 50px;
      height: 50px;
      top: 25%;
      left: 25%;
      font-size: 0.7em;
  }
  .overlay.rectangle.side{
    width: 80px;
    height: 40px;
    font-size: 0.65em;
  }

  .overlay.circle {
      width: 60px;
      height: 60px;
      top: 55%;
      left: 55%;
      font-size: 0.65em;
  }
  .overlay.circle-medium {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    font-size: 0.65em;
  }
  .overlay.circle-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    font-size: 0.6em;
  }
  
}

@media (max-width: 480px) {
  .overlay.rectangle {
    width: 40px;
    height: 40px;
    top: 30%;
    left: 20%;
    font-size: 0.65em;
  }
  .overlay.rectangle.side{
    width: 60px;
    height: 30px;
    font-size: 0.65em;
  }

  .overlay.circle {
      width: 45px;
      height: 45px;
      top: 60%;
      left: 60%;
  }
  .overlay.circle-medium {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 0.65em;
  }
  .overlay.circle-small {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    font-size: 0.5em;
  }
}
#arrowCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}