@font-face {
  font-family: "Gothic";
  src: url(../assets/fonts/Gothic\ War.otf);
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-Black.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

img {
  pointer-events: none;
}

:root {
  --header-image: url("../assets/images/header.jpg");
  --body-bg-image: url("../assets/images/246.webp");

  /* --content: #43256e; */
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  background-color: rgb(26, 44, 24);
  color: #f4ffea;
  background-image: var(--body-bg-image);
  background-repeat: repeat;
}

* {
  box-sizing: border-box;
}

#container {
  max-width: 1250px;
  /* this is the width of your layout! */
  /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
  margin: 0 auto;
  /* this centers the entire page */
}

/* the area below is for all links on your page
    EXCEPT for the navigation */
#container a {
  color: #8fcc06;
  font-weight: bold;
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
}

#container a:hover {
  text-decoration: underline;
}

.webring-info img,
.webring-prev img,
.webring-next img {
  max-width: 100%;
}

#header {
  width: 100%;
  background-color: #000000;
  /* header color here! */
  height: 150px;
  /* this is only for a background image! */
  /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
  background-image: var(--header-image);
  background-size: 100%;
  margin-bottom: 15px
}

/* navigation section!! */
#navbar {
  height: 40px;
  background-color: #000000;
  /* navbar color */
  width: 100%;
  margin-bottom: 15px;
}

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

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

/* navigation links*/
#navbar li a {
  color: #8fcc06;
  /* navbar text color */
  font-weight: 800;
  text-decoration: none;
  /* this removes the underline */
  -webkit-user-select: none;
  user-select: none;
}

/* navigation link when a link is hovered over */
#navbar li a:hover {
  color: #e32d85;
  text-decoration: underline;
}

#flex {
  display: flex;
}

/* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
aside {
  background-image: linear-gradient(160deg,
      #162b18 0%,
      #243c20 35%,
      #111711 70%,
      #070907 100%);
  width: 300px;
  padding: 20px;
  font-size: smaller;
}

/* this is the color of the main content area,
    between the sidebars! */
main {
  background-color: #000;
  flex: 1;
  padding: 20px;
  order: 2;
}

/* what's this "order" stuff about??
    allow me to explain!
    if you're using both sidebars, the "order" value
    tells the CSS the order in which to display them.
    left sidebar is 1, content is 2, and right sidebar is 3! */

#leftSidebar {
  order: 1;
}

#rightSidebar {
  order: 3;
}

footer {
  background-color: #000000;
  /* background color for footer */
  width: 100%;
  height: 40px;
  padding: 10px;
  text-align: center;
  /* this centers the footer text */
  margin-top: 15px;
}

h2,
h3 {
  color: #7e7a7c;
  font-family: "Roboto", sans-serif;
  -webkit-user-select: none;
  user-select: none;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 15px;
}

h1 {
  color: #7e7a7c;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  -webkit-user-select: none;
  user-select: none;
}

strong {
  /* this styles bold text */
  color: #e32d85;
  -webkit-user-select: none;
  user-select: none;
}

/* this is just a cool box, it's the darker colored one */
.box {
  background-color: #000;
  border: 5px solid #8fcc06;
  padding: 10px;
}

.dropbtn {
  background-color: #000;
  color: #8fcc06;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #8fcc06;
  padding: 5px 10px;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #f4ffea;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* CSS for extras */

#topBar {
  width: 100%;
  height: 30px;
  padding: 10px;
  font-size: smaller;
  background-color: #13092d;
}

.no-click {
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* BELOW THIS POINT IS MEDIA QUERY */

/* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

@media only screen and (max-width: 1050px) {
  #flex {
    /* flex-wrap: wrap; */
    flex-direction: column;
  }

  aside {
    width: 100%;
  }

  #rightSidebar {
    margin-left: 0 !important;
  }

  aside#rightSidebar {
    background-image: linear-gradient(196.5deg,
        #070907 0%,
        #111711 35%,
        #243c20 70%,
        #162b18 100%);
  }

  /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
  main {
    order: 1;
  }

  #leftSidebar {
    order: 2;
  }

  #rightSidebar {
    order: 3;
  }

  #navbar ul {
    flex-wrap: wrap;
  }

  #header {
    margin-bottom: 0px;
  }

  footer {
    margin-top: 0px;
  }

  h1 {
    font-size: 20px;
  }
}