* {
  margin: 0;
  padding: 0;
  font-size: 14px;
}

html, body {
  height: 100%; 
  margin: 0;
}

body {
  display: flex;
  justify-content: center; 
  align-items: center; 
  min-height: 100vh;
  background-size: contain;
  background-image: url("https://static.wikitide.net/windowswallpaperwiki/c/cf/Bliss.jpg");
}

.container {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 800px;
  height: 90vh; 
  max-height: 90vh;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.status-bar {
  background-color: rgb(245, 239, 232);
}

.window {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #ffffff;
}

.window-body {
  flex: 1;
  overflow-y:scroll; 
  padding: 10px;
  background: #ffffff;
  min-height: 0; 
}

.btn-back {
  margin-top: 10px;
  text-align: center;
}

.footer {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}

fieldset {
  padding: 10px;
  margin-bottom: 10px;
}

.window-body p {
  margin: 5px 0;
  font-size: 16px;
line-height: 150%;
}
.window-body strong {
  line-height: 150%;
  font-size: 16px;

}