body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

.banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #050505;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.banner nav ul li {
    margin: 10px;
}

.banner nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.banner nav ul li a:hover {
    color: #ff00a2;
}

.banner h1 {
    color: #ffffff;
    margin: 10px 0;
    font-size: 24px;
    text-align: center;
}

.banner p {
    color: #ffffff;
    margin: 5px 0;
    text-align: center;
}

main {
    padding: 1.5rem;
    margin-top: 100px; /* Adjust this value if needed */
}

h2 {
    color: #003366;
    margin-bottom: 1rem;
}

.latest-writeups, .categories, .tools, .contributions {
    margin-bottom: 2rem;
}

.writeup {
    background: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.writeup h3 {
    margin: 0 0 0.5rem;
}

.writeup a {
    color: #0066cc;
    text-decoration: none;
}

.writeup a:hover {
    text-decoration: underline;
}

.categories ul, .tools ul {
    list-style-type: none;
    padding: 0;
}

.categories li, .tools li {
    margin-bottom: 0.5rem;
}

.categories a, .tools a {
    color: #0066cc;
    text-decoration: none;
}

.categories a:hover, .tools a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    padding: 1rem 0;
    background: #003366;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}