body{
    background: #333;
}
nav {
    position: fixed;
    width: 100%;
    background: #1e2a38;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-container .brand {
    font-size: 24px;
    color: #f8d808;
    text-decoration: none;
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    font-size: 28px;
    color: #f8d808;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: space-around;
    width: 50%;
}

.nav-links li a {
    color: #f8d808;
    text-decoration: none;
    font-size: 18px;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    
}
.header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    margin-top: 80px;
}
.header h1 {
    margin-top: 0;
}
.content {
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
    color: #fff;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
ul {
    margin: 10px 0;
    padding: 0;
    list-style: none;
}
ul li {
    margin-bottom: 10px;
}

footer {
    background-color: #1e2a38;
    padding: 10px;
    margin-top: 50px;
    color: #f8d808;
    text-align: center; /* Center align text */
}

footer ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    justify-content: center;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin: 5px 15px; /* Adjust spacing for smaller screens */
}

footer ul li a {
    color: #f8d808;
    text-decoration: none;
    font-size: 18px;
}