/* Core Layout */
@font-face {                  
font-family: 'Director';
src: url(https://humantooth.neocities.org/fonts/Director-Regular.woff format('woff');
font-weight: normal;
font-style: normal;}

body {
    background-color: #000000; /* Black background like the image */
    color: #d1d1d1;
    font-family: 'Director', serif;
    margin: 0;
    display: flex;
    justify-content: center;
}

#container {
    width: 900px; 
    border-left: 1px solid #93608F;
    border-right: 1px solid #93608F;
    background-color: #000;
}

header {
    border-bottom: 1px solid #93608F; /* Your red color as an accent */
    padding: 10px;
    text-align: center;}

/* Three Column Setup */
#main-layout {
    display: flex;
}

.sidebar {
    width: 200px;
    padding: 15px;
    font-size: 0.8em;
    border-right: 1px solid #93608F;
}

aside.sidebar {
    width: 200px;       /* Matches the left sidebar for symmetry */
    padding: 15px;
    font-size: 0.8em;
    background-color: #000;
}
main {
    flex: 1;            /* This tells the center to take up all available middle space */
    min-width: 200px;   /* Prevents the center from getting too skinny */
    padding: 20px;
    background-color: #050505;
    border-right: 1px solid #93608F; /* Separator line like the reference image */
}

.content-box {
    margin-bottom: 30px;
    border: 1px solid #333;
    padding: 15px;
    background-color: #0a0a0a;
}

/* Headings within columns */
h3 {
    background-color: #1a1a1a;
    color: #93608F;
    padding: 15px;
    font-size: 0.9em;
    text-align: center;
    border: 1px solid #93608F;
}

/* Links */
a {
    color: #561164;
    text-decoration: none;
}

a:hover {
    color: #ff0000;
    text-decoration: underline ;
}
    
    
    .banner-area {
    background-color: #000;
    border-bottom: 3px double #93608F; /* Double line look from the image */
    padding: 40px 10px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

/* This styles the text to look like the "Dark Culture" logo */
.banner-title {
    font-family: 'Director', serif;
    font-size: 3.5em;
    color: #d1d1d1;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 4px;
    text-shadow: 0px 0px 15px rgba(133, 22, 0, 0.8); /* Red glow */
}

.banner-subtext {
    color: #851600;
    font-size: 0.7em;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
}

/* If you find a skeleton image to use as a background */
.banner-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3; /* Makes it look like a faint watermark */
    width: 100%;
    max-width: 800px;
    z-index: 0;
}

/* Ensure the title stays on top of the image */
.banner-title, .banner-subtext {
    position: relative;
    z-index: 1;
} 
    
    
.top-announcement {
    background-color: #000;
    color: #93608F;
    font-size: 10px;
    text-align: center;
    padding: 5px;
    border-bottom: 1px solid #333;
    font-family: monospace;
}    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  