body {
  margin: 0;
  padding: 30px;

  background-color: black;
  background-image: url("images/complaining.jpg");
  background-repeat: repeat;
  background-size: 200px 200px;

  color: white;
  font-family: "Courier New", monospace;
}

h1 {
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 10px;

  background: rgba(0, 0, 0, 0.75);
  border: 1px solid white;
  padding: 8px;
  width: fit-content;
}

.intro {
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid white;
  padding: 8px;
  width: fit-content;
  margin-bottom: 25px;
}

.home-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

.home-button img {
  width: 50px;
  height: auto;
}

.picture-button {
  display: block;
  margin-bottom: 8px;

  background: rgba(0, 0, 0, 0.75);
  border: 1px solid white;
  color: white;

  font-family: "Courier New", monospace;
  font-size: 16px;

  padding: 5px 8px;
  cursor: pointer;
}

.picture-button:hover {
  background: white;
  color: black;
}

.picture-popup {
  display: none;

  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  background: rgba(0, 0, 0, 0.9);
  border: 1px solid white;
  padding: 10px;
  z-index: 1000;
}

.picture-popup.open {
  display: block;
}

.picture-popup img {
  width: 800px;
  max-width: 90vw;
  max-height: 85vh;
  height: auto;
  display: block;
}

.close-text {
  color: white;
  font-size: 13px;
  margin-top: 8px;
  text-align: center;
}