body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: white;
    background: #141414;
    padding-top: 120px; /* Adjust this value based on the actual height of your fixed header */
}

.header-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background: #500000;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.2);
}

header, nav {
    margin: 0 auto;
    padding: 10px 20px; /* Reduced padding */
    color:#f6f6f6;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #f6f6f6;
}

nav a:hover, .active {
    text-decoration: underline;
    font-weight: bold;
}

a {
    color: white;
}

a:hover, .active{
    text-decoration: underline;
    color: #db3001;
}

main {
    margin: 20px;
    background: #202020;
    border-radius: 8px;
    padding: 20px;
    color: #f6f6f6;
}

footer {
    text-align: center;
    font-size: 0.8em;
    margin-top: 20px;
    padding: 10px;
    background: black;
}

@media (max-width: 600px) {
    nav ul li {
        display: block;
        margin-bottom: 10px;
    }
}
