body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: monospace;
}

.stairs-background-block {
  background-image: url("./assets/stairs.jpg"); /* You can change this to any desired color */
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh; /* 100% of the viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Prevents scrollbars if content is bigger than viewport */
}

.door-background-block {
  background-image: url("./assets/door.jpg"); /* You can change this to any desired color */
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh; /* 100% of the viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Prevents scrollbars if content is bigger than viewport */
}
