body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #3f3f3f;
    color: #ffffff; /* Set text color to white */
}

header {
    background: #242020;
    color: #ffffff; /* Ensure text color in header is white */
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
    color: #ffffff; /* Ensure text color in h1 is white */
}

nav {
    margin-top: 1rem;
}

nav a {
    color: #ffffff; /* Ensure text color in nav links is white */
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
}

main {
    width: 80%;
    margin: 2rem auto;
    padding: 2rem;
    background: #6b6a6b;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #ffffff; /* Ensure text color in main is white */
}

.scp-article {
    line-height: 1.6;
    color: #ffffff; /* Ensure text color in scp-article is white */
}

.scp-article h2 {
    margin-top: 0;
    font-size: 2rem;
    color: #ffffff; /* Ensure text color in h2 is white */
}

.scp-article h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: #ffffff; /* Keep this color for h3 if intended */
}

.scp-article p {
    margin-bottom: 1rem;
    color: #ffffff; /* Ensure text color in paragraphs is white */
}

footer {
    background: #242020;
    color: #ffffff; /* Ensure text color in footer is white */
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
