*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Georgia', serif;
    background-color: #0b1d3a;
    color: #ffffff;
}


header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    background-color: #000000;
}

header img{
    width: 50px;
    height: auto;
}

header h1{
    text-align: center;
    color: #d4af37;
    margin: 10px;
}

button{
    color: #0b1d3a;
    background-color: #d4af37;
    padding: 10px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
}

#menuButton{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #d4af37;
    border: none;
    border-radius: 3px;
}

#menu {
    position: fixed;
    top: 70px;
    left: -280px; /*left: -280px; */
    width: 250px;
    max-height: 500px;
    background-color: #0b1d3a;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 10px 5px; 
    transition: left 0.3s ease;
    border-radius: 0 8px 8px 0;
    z-index: 999;
    border-top: 1px solid #d4af37;
    border-bottom: 1px solid #d4af37;
    border-right: 1px solid #d4af37;
}

#menu.open {
    left: 0;
}

#listMenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

#listMenu li {
    padding: 3px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 100%;
}

#listMenu li a, #listMenu li button {
    width: 100%;
}

#listMenu li button{
    color: #0b1d3a;
    background-color: #d4af37;
    padding: 10px;
    border-radius: 12px;
    border: none;
}

#listMenu li:hover a, #listMenu li:hover button {
    background-color: #0b1d3a;
    color: #d4af37;
    border: 2px solid #d4af37;
}

ul{
    list-style: none;
}

ul li{
    background-color: #0b1d3a;
}

a{
    color: #0b1d3a;
    background-color: #d4af37;
    padding: 10px;
    text-decoration: none;
    border-radius: 12px;
}

.footer-text {
    margin: 10px auto;
    font-size: 12px;
    color: #999;
    text-align: center;
}

footer{
    display: flex;
    flex-direction: column;
    width: 100%; 
    font-size: 12px;
    text-align: center;
}