body {
    background: url('/images/animewaterbg.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    text-align: center;

    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;

    background:
    repeating-linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 3px
    );

    pointer-events: none;
    z-index: -1;
}

#container {
    width: 900px;
    height: 700px;
    margin: 20px auto;
    padding: 5pt;
    box-sizing: border-box;
}

#header,
#navigation,
#main-content,
#sidebar,
#footer {
    box-sizing: border-box;
}

#header {
    height: auto;
    margin-top: 10pt;
    margin-bottom: 5pt;
    padding: none;
    background: none;
    border: 1pt solid none;
}

#navigation {
    height: 30px;
    margin-bottom: 5pt;
    padding: none;
    background: #19828a;
    border: 1pt solid #043545;
}


#content-area {
    display: flex;
    gap: 5pt;
    height: auto;
    margin-bottom: 5pt;
}

#main-content {
    width: 75%;
    padding: 10px;
    border: 1pt solid #000000;
    background: white;
}

#sidebar {
    width: 25%;
    padding: 10px;
    border: 1pt solid #000000;
    background: white;
    font-family: 'THEBOLDFONT';
    font-weight: none;
    font-size: 7pt;
    text-align: justify;
}

#footer {
    height: auto;
    padding: none;
    border: 1pt solid none;
    background: none;
}