
.compbook-container {
  position: relative;
  display: inline-block; 
  width: 100%;
  
}

.map drawing {
    display: block;
    width:100%;
    height: auto;

}

.icon {
  position: absolute;
  transition: transform 0.2s ease-in-out;
  z-index: 10;
}

.icon img {
  width: 100%;
  height: auto;
  display: block;
}

.icon:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.icon a {
  display: block;
  width: 100%;
}

/* for desktop */
.about-group {
  top: 5%;
  right: 0%;
  width: 15%;
}

.art-group {
  bottom: 5%;
  left: 2%;
  width: 15%;
}

.zines-group {
  top: 35%;
  left: 55%;
  width: 15%;
}

.journal-group {
  bottom: 5%;
  right: 0%;
  width: 15%;
}


/* --- MOBILE --- */
@media (max-width: 768px) {
  body {
    background-image: none; 
    background-color: #f4f4f4; 
  }

  .compbook-container {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 50px 20px;
    min-height: auto;
  }

  .icon {
    position: static; 
    width: 150px; 
  }
}