/* === Base Styles === */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Minecraft', sans-serif;
  color: white;

  background-image: 
    linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0)),
    url('https://2fort.neocities.org/bases/smoothstone.jpg');
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  background-position: top left, top left;
}

/* === Layout Container === */
.wrapper {
  display: flex;                /* side-by-side layout */
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}

/* === Main Content === */
.main-content {
  flex: 1;                      /* expands to fill space */
  background-color: black;
  border: 3px outset white;
  padding: 10px;
  text-align: center;
}

/* === Infobox === */
.infobox {
  width: 300px;                 /* fixed width */
  background-color: black;
  border: 3px outset white;
  padding: 10px;
  font-size: 14px;
}

/* === Infobox Table === */
.infobox table {
  width: 100%;
  border-collapse: collapse;
}

.infobox th {
  background-color: #222;
  font-size: 16px;
  padding: 8px;
  border: 1px solid white;
}

.infobox td {
  padding: 6px;
  border: 1px solid white;
}

/* === Images === */
img {
  max-width: 100%;
  height: auto;
}

/* === Paragraphs === */
p {
  color: white;
}
