*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #0b1d3a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 10px;
}

.header{
    width: 350px;
    display: flex;
    align-items: center;
}

.header img{
    height: 50px; 
}

#menuButton{
    width: 3px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    font-size: 1.2rem;
    font-weight: bold;
}

#menu {
    position: fixed;
    top: 60px;
    left: -280px; /*left: -280px; */
    width: 280px;
    height: 580px;
    background-color: #0b1d3a;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    padding-top: 60px; 
    transition: left 0.3s ease;
    border-radius: 0 35px 35px 0;
    z-index: 999;
}

#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 button {
    width: 100%;
}

#listMenu li:hover {
    background-color: #0f2b57;
}

.box-default {
    background-color: #12284a;
    border: 1px solid #d4af37;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 350px;
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.box{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    overflow-y: scroll;
}

.box::-webkit-scrollbar{
    display: none;
}



.backButton{
    background-color: white;
    color: red;
    font-weight: bold;
}

.logo-text {
    width: 350px;
    text-align: center;
    font-size: 32px;
    color: #d4af37;
    margin: 10px;
    font-weight: bold;
}

.subtitle {
    width: 350px;
    text-align: center;
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
}

.base{
    width: 100%;
}

.footer-text {
    width: 350px;
    margin: 10px;
    font-size: 12px;
    color: #999;
    text-align: center;
}

footer{
    font-size: 12px;
    width: 350px;
    text-align: center;
}

button{
    background-color: #d4af37;
    color: #0b1d3a;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

#listMenu li button {
    margin: 0;    
}