body {
  position: relative;
  min-height: 130vh;
  background-image: url(../Images/noiseedited.jpg);
  background-size: contain;
  background-repeat: repeat;
}

#viewer {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  height: 90vh;
}

.pan-name {
  font-size: 48px;
  font-family: "BO";
  color: #d2b068;
}

.return-home {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: -33%;
  margin-bottom: 10vh;
}

.return-btn {
  display: inline-block;

  line-height: 40px;
  font-size: 24px;

  text-decoration: none;
  color: rgb(29, 29, 29);
  border: 1px solid rgb(29, 29, 29);
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  transition: all 0.35s;
  padding: 1vw 2vw;
  font-weight: 400;
}

.return-btn span {
  position: relative;
  z-index: 2;
}

.return-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #d2b068;
  transition: all 0.35s;
}

.return-btn:hover {
  color: #fff;
  border: 1px solid white;
  letter-spacing: 0.5vw;
}

.return-btn:hover:after {
  width: 100%;
}
