
    html, body {
    margin: 0;
    height: 100%;
  	}
  	
  body {
	height: 100vh;
    overflow-y: hidden;
	overflow-x:hidden;	
	 font-family:"Montserrat", sans-serif;
    padding: 0;
	background-image: url("images/fundo2.png");
	background-repeat: repeat;
	justify-content: center;	
  }

    .gallery {
	display: grid;
	grid-template-columns: repeat(10, 100px);
	grid-template-rows:100px; 
	grid-gap: 7px;
	padding: 35px 10px 10px 10px;
	overflow-x: auto;
	margin-left:auto;
	margin-right: auto;
	margin-top: 30px;
	width:1100px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	
	@media all and (max-width: 1100px) 
	{
    grid-template-columns: repeat(20, 100px);
	width:390px;
	}
}
   .gallery a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

  .gallery a:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }

  .gallery img {
     width: 100px;
    height: 100px;       
	min-height: 80px; 
    object-fit: cover;
    display: block;
  } 
  
  .nbMapa {
	display: flex;  
	position: relative;
	justify-self: center;
	margin-left:auto;
	margin-right: auto;
	/* overflow-y: auto; 
	overflow-x: hidden; */
	 width: 410px;
	height:auto;
	padding-top: 10px;
	padding-bottom: 5px;
	@media all and (max-width: 1100px) 
	{
    height:590px;
	
	}
}

	.back {
	position: relative;
	 overflow-y: scroll; 
	overflow-x: hidden; 
	box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.5);
	height: 500px;
	}
	/* Hide scrollbar for Chrome, Safari and Opera */
	.back::-webkit-scrollbar {
    display: none;
	} 
	/* Hide scrollbar for IE, Edge and Firefox */
 	.back {
		-ms-overflow-style: none;  /* IE and Edge */
		scrollbar-width: none;  /* Firefox */
	} 

 
   .amapa {
	position:relative; /* <— makes imgPointer’s coordinates relative to this box  */
	width: 410px;
	height:678px; 
	
	background-image: url('images/sydney and nb.png');
	background-position: top;
	background-repeat: no-repeat;
	box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.5);
 }

    /*background: url('https://picsum.photos/id/1074/800/800') center/cover no-repeat;*/
 
 #imgPointer {
    position: absolute;
    width: 76px;
    height: auto;
    opacity: 0;
    pointer-events: none;
    transition:
      top 0.5s ease,
      left 0.5s ease,
      transform 0.5s ease,
      opacity 0.3s ease;
  }
   #imgHiker {
    position: absolute;
    width: 50px;
    height: auto;
    opacity: 0;
    pointer-events: none;
    transition:
      top 0.5s ease,
      left 0.5s ease,
      transform 0.5s ease,
      opacity 0.3s ease;
  }
