body {
    background-image: url('Bricks_2.png');
     background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed; /* Optional: keeps image fixed during scroll */
  margin: 0; /* Ensures no default margin/padding causes scrollbars */
  padding: 0;
  height: 100vh; /* Ensures the body covers the full viewport height */
  width: 100vw;
}

body.page-alt {
  background-image: url("Lightspage.png");
}

.top-bar {
  background-color: #dec586; /* SaddleBrown color */
  color: white; /* Text color */
  position: fixed; /* Fixes to top */
  top: 0;
  left: 0;
  width: 100%; /* Full width */
  height: 100px; /* Height of the bar */
  padding: 10px;
  border: solid 7px #877341; 
  border-radius: 0px 0px 20px 20px; /* Rounded bottom corners */
  box-sizing: border-box; /* Ensures padding doesn't affect width */
  font-family: "Sacramento", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  text-align: center;
  z-index: 1000; /* Keeps it above other content */
}

.image-container {
  display: flex; /* Makes the container a flex container */
  justify-content: center; /* Optional: centers the images horizontally */
  gap: 20px; /* Optional: adds space between images */
}

.image-container img {
  max-width: 100%; /* Ensures images scale within their container */
  margin-top: 150px;
  height: auto; /* Maintains aspect ratio */
  /* You can also set a fixed width and height if needed */
  width: 600px;
  height: 450px;
  object-fit: cover; /* Optional: ensures images fill their fixed space without distortion */
}

.door img {
    position: center;
    margin-top: 0px;
    bottom: 0;
    width: 1000px; /* or a percentage value, e.g., 50% */
    height: 1000px;

}


