body {
  background-color: black;
  color: white;
  font-family: Times New Roman;
  margin: 0;
}

.centered-layout {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

#room-gif {
  display: block;
  width: auto;
  max-width: 95vw;
  max-height: 82vh; 
  object-fit: contain;
  z-index: -1;
  pointer-events: none;
}

#main-content p {
  margin-top: 15px;
  font-size: 1.2rem;
}
p a {
    color: inherit;
    text-decoration: none;
}


.gallery-link {
  position: relative;
  display: inline-block;
  width: 700px;   
  height: 500px;    
}

.center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;   
}


.gallery-link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  
  transition: none
}

.gallery-link .img-hover {
  opacity: 0;
}

.gallery-link:hover .img-normal {
  opacity: 0;
}
.gallery-link:hover .img-hover {
  opacity: 1;
}
