
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://aetherzone.neocities.org/directory/bg.png');
    background-size: cover;
    background-attachment: fixed;
    font-family: "Jersey 10", sans-serif;
    font-size: 1.5em;
    overflow: hidden; 
}

.pagedoll {
    position: absolute;
    bottom: -45%;
    left: -5%;
    height: 150vh;
    z-index: 10;
    pointer-events: none;
}

.main-container {
    width: 800px; 
    max-width: 90%;
    background-color: #7a5ba7; 
    border: 4px solid #4a3475; 
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.2);
}

.header img {
    width: 100%;
    display: block;
}

.content-wrapper {
    display: flex;
    padding: 15px;
    gap: 15px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 120px;
}

.nav-button {
    background-color: #e6dfff;
    border: 3px solid #4a3475;
    color: #7a5ba7;
    text-decoration: none;
    text-align: center;
    padding: 8px 5px;
    font-weight: bold;
    font-size: 1.1em;
}

.nav-button:hover {
    background-color: #ffffff;
    border-color: #ffffff;
}

.content-box {
    background-color: #ffffff;
    flex-grow: 1;
    height: 400px;
    border: 3px solid #4a3475;
    padding: 20px;
    overflow-y: auto; 
}

h1 {
    margin-top: 0;
    font-size: 1.5em;
    color: #333;
}

.footer {
    text-align: right;
    padding: 5px 15px;
    color: #4a3475;
    font-size: 0.8em;
}