/* === Site background === */
body {
  background-color: #ff9b42; /* bright pumpkin orange */
  background-image: url("https://64.media.tumblr.com/dc56161395d8f3d5202827bd0f9e7374/0aa40e3a5b732ede-55/s100x200/f37937f70c23c7324ecf7b6b315dc6cf5bf6e4e2.gifv");
  background-repeat: repeat;
  background-attachment: fixed;
  color: #2b1a0f;
  font-family: Verdana, sans-serif;
  margin: 0;
  padding: 20px;
}

/* === Webring members table === */
table.webring-members {
  border-collapse: collapse;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.75); /* bright/light panel */
  border-radius: 8px;
  overflow: hidden;
}

/* Header */
table.webring-members thead th {
  text-align: left;
  padding: 8px 12px;
  background: #ffd27f; /* lighter candy corn orange */
  color: #3b1c0a;
  border-bottom: 2px dotted #3b1c0a;
  font-size: 1.1em;
}

/* Member rows */
table.webring-members tbody tr {
  background: rgba(255, 255, 255, 0.85);
}

table.webring-members tbody tr + tr {
  border-top: 2px dotted #3b1c0a; /* dotted divider between members */
}

/* Each cell */
table.webring-members td {
  padding: 10px 14px;
  vertical-align: top;
  border-right: 2px dotted #3b1c0a; /* dotted separators between sections */
}

table.webring-members td:last-child {
  border-right: none;
}

/* Links */
table.webring-members a {
  color: #7c3b0c;
  text-decoration: none;
  font-weight: bold;
}
table.webring-members a:hover {
  text-decoration: underline;
  color: #000;
}

.box {
  width: 50%;                /* takes up half the screen */
  margin: 40px auto;          /* centers it horizontally with margin on top */
  padding: 20px;              /* comfy spacing inside */
  background: rgba(255, 255, 255, 0.8); /* light panel so text pops */
  border: 3px dotted #e68a36; /* slightly less bright than background (#ff9b42) */
  border-radius: 15px;        /* rounded corners */
  box-sizing: border-box;     /* padding doesn’t break width */
}

/* Make it responsive for small screens */
@media (max-width: 768px) {
  .box {
    width: 90%;
  }
}

/* Main content box */
.box {
  width: 50%;
  margin: 40px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 3px dotted #e68a36; /* pumpkin-darker orange */
  border-radius: 15px;
  box-sizing: border-box;
}

/* Footer box */
.box-footer {
  width: 40%; /* smaller than the main box */
  margin: 20px auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 2px dotted #e68a36;
  border-radius: 12px;
  text-align: center;
  font-size: 0.9em;
  box-sizing: border-box;
}

/* Ad space box */
.ad-space {
  width: 300px;       /* standard ad block size */
  height: 250px;      /* “medium rectangle” ad size */
  margin: 20px auto;
  background: rgba(255, 255, 255, 0.7);
  border: 2px dashed #e68a36; /* dashed to look more “placeholder-y” */
  border-radius: 10px;
  display: flex;       /* center the text inside */
  align-items: center;
  justify-content: center;
  color: #7c3b0c;
  font-family: Verdana, sans-serif;
  font-size: 0.85em;
  box-sizing: border-box;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .box {
    width: 90%;
  }
  .box-footer {
    width: 80%;
  }
  .ad-space {
    width: 90%;
    height: auto;
    min-height: 150px;
  }
}

hr {
  border: none;
  border-top: 2px dotted #ffa94d; /* soft orange */
  margin: 1em 0;
}

code {
  display: inline-block;
  padding: 2px 6px;
  border: 1px solid #888;   /* gray border */
  border-radius: 4px;       /* rounded corners */
  background-color: #f9f9f9; /* soft background */
  color: #ff6600;           /* orange text */
  font-family: monospace;
}



