* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
}

header {
    text-align: center;
    background-color: #1e1e1e;
    padding: 2rem;
    border-bottom: 2px solid #ff3b3b;
}

header h1 {
    font-size: 3rem;
    color: #ff3b3b;
}

header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

main {
    width: 80%;
    margin: 2rem auto;
}

.create-post h2, .blog-posts h2 {
    font-size: 2rem;
    color: #ff3b3b;
    margin-bottom: 1rem;
}

.create-post form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#create-post input, #create-post textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 1.1rem;
}

#create-post textarea {
    height: 150px;
}

#create-post button {
    background-color: #ff3b3b;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

#create-post button:hover {
    background-color: #ff1f1f;
}

.blog-posts {
    margin-top: 3rem;
}

.post {
    background-color: #1e1e1e;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid #ff3b3b;
    border-radius: 5px;
}

.post h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ff3b3b;
}

.post p {
    font-size: 1.2rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #1e1e1e;
    border-top: 2px solid #ff3b3b;
}
