body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 30px;
  background-color: #ffffff00;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000,
               -2px 2px 0 #000, 2px 2px 0 #000;
}

#container {
  position: relative;
  width: 800px;
  height: 1100px;
  /* Remove flex here to avoid layout issues */
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  background-image: url("https://files.catbox.moe/xe4v2m.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
}

#info {
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;  /* fill container */
  margin: auto;
  padding: 20px;
  text-align: center;
  z-index: 1;
  white-space: pre-line;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 10px;
  max-height: 100%;
  overflow-y: auto;

  /* Center content vertically & horizontally */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
