body{
  background-image: url("https://bog-body.neocities.org/tripreports/23.jpg");
  background-size: cover;
  height: 100vh;
  font-family: american typewriter;
  text-align: center;
}

/*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;
    }

/*content*/
h1{
  top: 0px;
  text-align: center;
  font-size: 5vh;
}

h2{
  top: 0px;
  text-align: center;
  font-size: 3.5vh;
}

a{
  color: #d46a6a;
  text-decoration: none;
}

#left{
  max-height: 400px;
  max-width: 400px;
  float: left;
  margin: 10px 20px 10px 20px;
}
#right{
  max-height: 400px;
  max-width: 400px;
  float: right;
  margin: 10px 20px 10px 20px;
}
#center{
  max-width: 80%;
  display:block;
  margin-left: auto;
  margin-right: auto;
}

.listings{
  padding: 5px 20px 20px 20px;
  position: absolute;
  left: 2vw;
  top: 20vh;
  width: 13vw;
  height: 70vh;
  background-color: rgb(255, 255, 255, 0.8);
  overflow: auto;
  border: 5px solid rgb(174, 212, 222, 0);
  border-radius: 50px;
}

.report{
  display: none;
}

.report.active{
  display: block;
  padding: 5px 20px 20px 20px;
  position: absolute;
  left: 20vw;
  top: 12vh;
  width: 70vw;
  height: 78vh;
  background-color: rgb(255, 255, 255, 0.8);
  overflow: auto;
  border: 5px solid rgb(174, 212, 222, 0);
  border-radius: 50px;
  text-align: left;
}
