body {
    /* This creates the fade: starts orange at the top, turns to tan at 50px */
    background: linear-gradient(to bottom, #fed6af 0%, #ffffee 200px);
    background-repeat: no-repeat;
    background-color: #ffffee; /* This covers the rest of the page */
    
    font-family: arial, helvetica, sans-serif;
    font-size: 13px;
    color: #800000;
    margin: 0;
    padding: 20px;
}

a {
  text-decoration: underline;
  color: blue;
}

/* The header boxes (What is 4chan? / Boards / Stats) */
.box {
    background-color: white;
    border: 1.5px solid brown;
    margin-bottom: 6px;
    max-width: 900px;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 6px;
}

.box-header {
    background-color: #E04000; /* Bright orange-red */
    color: white;
    font-weight: bold;
    padding: 3px 10px;
    border-bottom: 1px solid #800000;
    text-align: left;
}

.box-header2 {
    background-color: #fed6af; /* Bright orange-red */
    color: brown;
    font-weight: bold;
    padding: 3px 10px;
    text-align: left;
}

.box-content {
    padding: 10px;
    color: black;
    line-height: 1.4;
}

/* The "Popular Threads" Grid */
.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 15px;
}

.thread-preview {
    width: 180px;
    text-align: center;
    font-size: 11px;
}

.image-placeholder {
    width: 150px;
    height: 150px;
    background-color: #000; /* Black squares from your image */
    margin: 0 auto 10px auto;
    display: block;
}

.reply-box {
    background-color: #F0E0D6; /* Pinkish-tan */
    border: 1px solid #D9BFB7;
    border-left: none; /* Traditional 4chan style doesn't have a left/top border on replies, but you can keep them if you like! */
    border-top: none;
    padding: 10px;
    margin-bottom: 5px;
    display: table; /* This keeps the box small around the text */
    min-width: 300px;
}

.reply-box .anon {
    color: #117743;
    font-weight: bold;
    font-size: 13px;
}

.reply-box p {
    color: #800000;
    margin: 5px 0 0 0;
}























