/* User Styles */

/* Variables */
:root {
  --header-image: url('https://notbill.neocities.org/site assets/site header.png');
  --content-color: #9ff4e5;
  --strong-color: #00b9be;
  --link-color: af5d8b;
  --border-color: #005f8c;
  --box-color: #002b59 ;
  --background-color: #000000;
  
}

/* Fonts */
@font-face {
  font-family: 'Consolas';
  src: url('https://notbill.neocities.org/site assets/CONSOLA.ttf');
}

@font-face {
  font-family: 'Consolas';
  src: url('https://notbill.neocities.org/site assets/CONSOLAB.ttf');
  font-weight: bold;
}

@font-face {
  font-family: 'Consolas';
  src: url('https://sadhost.neocities.org/fonts/consolai.ttf');
  font-style: italic;
}

@font-face {
  font-family: 'Consolas';
  src: url('https://sadhost.neocities.org/fonts/consolab.ttf');
  font-style: italic;
  font-weight: bold;
}

/* Body Styles */
body {
  font-family: 'Consolas', sans-serif;
  margin: 0;
  background-color: var(--background-color);
  color: var(--content-color);
  background-size: 65px;
  background-image: var(--body-bg-image);
  box-sizing: border-box;
}

/* Container Styles */
#container {
  max-width: 900px;
  margin: 0 auto;
}

/* Link Styles */
#container a {
  color: var(--link-color);
  font-weight: bold;
}

/* Header Styles */
#header {
  width: 100%;
  background-color: var(--background-color);
  height: 150px;
  background-image: var(--header-image);
  background-size: 100%;
}

/* Navbar Styles */
#navbar {
  height: 40px;
  background-color: #13092D;
  width: 100%;
}

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

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

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

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

/* Flex Styles */
#flex {
  display: flex;
  position: relative;
}

/* Sidebar Styles */
aside {
  background-color: var(--background-color);
  width: 200px;
  padding: 20px;
  font-size: smaller;
  border: solid 2px var(--border-color);
}

/* Main Content Styles */
main {
  background-color: var(--background-color);
  flex: 1;
  padding: 20px;
  order: 2;
  border: solid 2px var(--border-color);
  max-height: 800px;
  max-width: 600px;
  overflow-y: auto; /* Add this line to make the content vertically scrollable */
}

#leftSidebar {
  order: 1;
}

#rightSidebar {
  order: 3;
  height: 200px;
}


/* Footer Styles */
footer {
  background-color: var(--background-color);
  width: 100%;
  height: 40px;
  padding: 10px;
  text-align: center;
}

/* Heading Styles */
h1, h2, h3 {
  color: var(--strong-color);
}

h1 {
  font-size: 25px;
}

/* Strong Text Styles */
strong {
  color: var(--strong-color);
}

/* Box Styles */
.box {
  background-color: var(--box-color);
  border: 1px solid var(--border-color);
  padding: 10px;
}

/* Top Bar Styles */
#topBar {
  width: 100%;
  height: 30px;
  padding: 10px;
  font-size: smaller;
  background-color: #13092D;
}

/* Media Query */
@media only screen and (max-width: 800px) {
  #flex {
    flex-wrap: wrap;
  }

  aside {
    width: 100%;
  }

  main {
    order: 1;
  }

  #leftSidebar {
    order: 2;
  }

  #rightSidebar {
    order: 3;
  }

  #navbar ul {
    flex-wrap: wrap;
  }
}
