/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url(https://oliveyoongs.neocities.org/starbg.gif);
  background-size: cover;
  background-color: #000;
  font-family: Verdana;
  color: white;
}

.header {
  display: block;
  width: 80%;
  max-width: 800px;
  padding: 40px;
  margin: 50px auto;
  border: 2px solid white;
  border-radius: 12px;
}

.content {
  display: block;
  width: 80%;
  max-width: 800px;
  background-color: #011538;
  padding: 40px;
  margin: 50px auto;
  border: 2px solid white;
  border-radius: 12px;
}

/* Custom font for heading */
h1 {
  font-family: "Jersey 10", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  text-align: center;
}

:root {
  --header-image: url('https://oliveyoongs.neocities.org/Screenshot%202025-07-31%20at%209.40.45%E2%80%AFPM.png');
  --body-bg-image: url('https://oliveyoongs.neocities.org/Screenshot%202025-07-31%20at%209.40.45%E2%80%AFPM.png');
  --content: #011538;
}

* {
  box-sizing: border-box;
}

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

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

#header {
  width: 100%;
  background-color: #011538;
  height: 181px;
  background-image: var(--header-image);
  background-size: 100%;
}

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

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

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

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

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

#flex {
  display: flex;
  flex-wrap: wrap;
}

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

#rightSidebar {
  order: 3;
}

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

main {
  background-color: #011538;
  flex: 1;
  padding: 20px;
  order: 2;
}

footer {
  background-color: #011538;
  width: 100%;
  height: 40px;
  padding: 10px;
  text-align: center;
  margin-top: 10px;
}

h2,
h3 {
  color: #EDC41F;
}

strong {
  color: #EDC41F;
}

.box {
  background-color: #010C1F;
  border: 1px solid #EDC41F;
  padding: 10px;
}

#topBar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 30px;
  padding: 10px;
  font-size: smaller;
  background-color: #011538;
}

ul {
  padding-left: 10px;
}

#titleBar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.title-gif {
  width: 50px;
  height: auto;
}

/* Responsive Layout */
@media only screen and (max-width: 800px) {
  aside {
    width: 100%;
  }

  main {
    order: 1;
  }

  #leftSidebar {
    order: 2;
  }

  #rightSidebar {
    order: 3;
  }

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