:root {
    --header-image: url('snoopy-header.gif');
    --body-bg-image: url('mybackground.gif'); 
    --content: #43256E;
    cursor: url("cursor5.png");
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}
@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
    font-weight: bold;
}
@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
    font-style: italic;
}
@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
    font-style: italic;
    font-weight: bold;
}

body {
    background-image: url(mybackground.gif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    font-family: sans-serif;
    background-color: #000000;
    color: white;
  
}

* {
    box-sizing: border-box;
}

#container {
    max-width: 900px;
    margin: 0 auto;
    
    
    
}

#container a {
    color: #364830;
    font-weight: bold;
    
}

#header {
    width: 100%;
    background-color: #364830;
    height: 150px;
    background-image: var(--header-image);
    background-size: cover;
    background-position: center;
    
}

#navbar {
    height: 40px;
    background-color: #526b48;
    width: 100%;
    margin-bottom: 10px;
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#navbar li {
    padding-top: 10px;
}

#navbar li a {
    color: #CC5500;
    font-weight: 800;
    text-decoration: none;
}

#navbar li a:hover {
    color: #364830;
    text-decoration: underline;
}

#flex {
    display: flex;
}

aside {
    background-color: #364830;
    width: 200px;
    padding: 20px;
    font-size: smaller;
}

main {
    background-color: #364830;
    flex: 1;
    padding: 20px;
    order: 2;
    text-align: center;
}

#leftSidebar {
    margin-right: 10px;
    order: 1;
}

#rightSidebar {
    margin-left: 10px;
    order: 3;
}

footer {
    background-image: url(mochi-jumprope-bar.gif);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #526b48;
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
    margin-top: 10px;
}

h1, h2, h3 {
    color: #CC5500;
}

h1 {
    font-size: 25px;
}

strong {
    color: #CC5500;
}

.box {
    background-color: #526b48;
    border: 1px solid #CC5500;
    padding: 10px;
}

#topBar {
    
    width: 100%;
    height: 40px;                     
    padding: 0;                     
    border: 2px solid #CC5500;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: black;
    display: flex;
    align-items: center;             
    overflow: hidden;
    
  
    
  }