body{
  background-color: #6a8472;
  overflow: auto;
  margin: 0;
}

.collage{
  width: 100%;
  margin: 0;
}

/*back button*/
.home{
  display: block;
  position: absolute;
  top: 4.5vw;
  left: 4%;
  transform: translate(-50%, -40%);
  width: 3vw;
}
.home span {
			opacity: 0;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			font-size: calc(1.5rem);
			color: #D46A6A;
			line-height: 1;
			filter: drop-shadow(1px 1px 0 white)
				drop-shadow(-1px 1px 0 white) 
				drop-shadow(1px -1px 0 white) 
				drop-shadow(-1px -1px 0 white);
			text-transform: uppercase;
			z-index: 99;
			width: fit-content;
			height: fit-content;
			display: inline-block;
			position: absolute;
		}
.home:hover img {
			 transform: rotate(20deg);
		}
.home:hover span {
			opacity: 1;
    }