
body {
  background-color: #dcd7d0;
  background-image: url('images/map.png'); 
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  font-family: "comic sans ms", "comic sans", cursive; 
}

.zines-container {
  position: relative; 
  width: 100%;
  max-width: 1100px; 
  margin: 0 auto;
  height: 100vh;
  box-sizing: border-box;
}

.zines-header {
  position: absolute;
  top: 8%;
  left: 6%;
}

.zines-header h1 {
  color: #0a192f; 
}

.zine-icon {
  position: absolute;
  text-decoration: none; 
  color: #0a192f;
  text-align: center;
  transition: transform 0.2s ease-in-out;
  width: 200px; 
}

.zine-icon img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 3px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
}

.zine-icon:hover {
  transform: scale(1.1);
  z-index: 20;
}