body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

.museum-container {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url('images/closed-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.foreground-image {
  width: 40%;
  max-width: 500px;
  height: auto;
}

/* Mobile scaling */
@media (max-width: 768px) {
  .foreground-image {
    width: 70%;
    max-width: none;
  }
}
