@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DotGothic16', sans-serif;
  background-color: rgb(255, 160, 52);
  
}


.room{
  width: 100%;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  
}
.wall{
  width: 50%;
  position: relative;
}
.wall img{
  width: 100%;
}

.wall-a img{
  width: 37.5%;
  position: absolute;
  top: 70%;
  left: 32%;
  z-index: 1;

}
.wall-a :hover {
  background-color: orange;
}

.wall-w{
  width: 23.4%;
  position: absolute;
  top: 40.3%;
  left: 60.16%;
  z-index: 1;
}
.wall-w :hover {
  background-color: orange;
}
.wall-o{
  width: 20.4%;
  position: absolute;
  top: 24.7%;
  left: 28.15%;
  z-index: 1;
}




.about-detail{
  width: 25vw;
  position: absolute;
  top: 5%;
  left: 5%;
}
.about-detail h1{
  font-size: 4vw;
  padding-bottom: 1.5vh;
}
.about-detail p{
  padding-top: 2vh;
  font-size: 1.8vw;
}

.about-detail2{
  width: 25vw;
  position: absolute;
  bottom: 5%;
  right: 5%;
}