* {
  cursor:
    url("https://i.ibb.co/M57rTyXT/blue-heart-hand-cursor.png"), auto !important;
  color: var(--bodyFontColor);
  font-family: var(--bodyFont);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
  border: 0px;
  outline: 0px;
  word-wrap: break-word;
}

::selection {
  background: var(--highlightColor);
  color: var(--backgroundColor);
}

::-webkit-scrollbar {
  width: 5px;
  height: 0px;
  background: var(--mutedColor);
}

::-webkit-scrollbar-thumb {
  background: var(--secondaryColor);
  border: 1px solid var(--accentColor);
  border-radius: 6px;
}

a {
  text-decoration: none;
  color: var(--primaryColor);
}

a:hover {
  color: var(--accent2Color);
}

body {
  background-repeat: repeat;
  background-attachment: fixed;
  counter-reset: section;
}

b {
  color: var(--accentColor);
}

i {
  color: var(--accentColor);
}

u {
  border-bottom: 1px solid var(--highlightColor);
}

s {
  color: var(--primaryColor);
}

input,
textarea {
  display: block;
  width: 100%;
  margin-bottom: 2px;
  padding: 6px;
}

.degree {
  font-weight: bold;
  color: var(--highlight2Color);
}

#devlogHeader {
  background: url("https://i.ibb.co/Jj0MkVHr/devlog-banner.png") no-repeat; /* 2400px x 600px */
  background-position: center;
  background-size: contain;
  height: 200px;
  width: 800px;
}

#devlogContainer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#midline {
  position: sticky;
  top: 0;
  width: 800px;
  background: var(--mutedColor);
  text-align: center;
  display: flex;
  justify-content: space-between;
}

#midline a {
  display: inline-block;
  text-decoration: none;
  color: var(--linkFontColor);
  width: 30%;
  padding: 20px 10px;
}

#midline a:after {
  content: none;
}

#midline a:hover {
  color: #fff;
  background: var(--primaryColor);
}

/* ========= */

.start {
  display: inline-block;
  font-family: var(--subHeaderFont);
  letter-spacing: 2px;
  background: var(--lightPinkHue);
  min-width: 250px !important;
}

/* ======== */

.mainDlog {
  display: flex;
  width: 800px;
  flex-grow: 1;
}

/* ========== */

#sidebarDlog {
  background-color: #fff !important;
  width: 250px;
  padding: 10px 10px 20px 20px;
}

#sidebarDlog a.link {
  display: block;
  padding: 0px 0px 0px 15px;
  color: var(--bodyFontColor);
}

#sidebarDlog a.link:after {
  content: none;
}

#sidebarDlog a.link:before {
  counter-increment: section;
  content: "0" counter(section) ".\2003";
  font-weight: bold;
}

/*
#sidebar a.link:hover {
  padding-left: 50px;
} */

#contentDlog {
  width: 550px;
  padding: 10px 20px 20px 20px;
  text-align: justify;
}

#footer {
  float: none;
  clear: both;
  padding: 20px 0;
  color: var(--bodyFontColor);
  background-position: bottom;
  background-size: cover;
  text-align: center;
}

/* ========================================= */
/* --- MOBILE HAMBURGER MENU --- */
/* ========================================= */

#hamburger-btn {
  display: none;
  background: var(--primaryColor);
  color: #fff;
  border: 2px outset var(--primaryColor);
  padding: 10px;
  width: 100%;
  text-align: center;
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 15px;
}

#hamburger-btn:active {
  border: 2px inset var(--primaryColor);
}

@media (max-width: 768px) {
  /* 1. Show the hamburger button */
  #hamburger-btn {
    display: block;
  }

  /* 2. Hide components not needed on mobile */
  #midline {
    display: none !important;
  }

  /* 3. Mobile menu behavior */
  #nav-sidebar {
    display: none;
  }

  #nav-sidebar.mobile-open {
    display: block;
    border: 2px dashed var(--primaryColor);
    padding: 10px;
    margin-bottom: 15px;
  }

  /* 5. CENTER THE MAIN CONTENT ON PHONES */
  #content {
    float: none; /* Removes the desktop right-alignment */
    margin: 0 auto; /* Centers the box */
    width: 95%; /* Takes up most of the phone screen */
    padding: 10px 5px; /* Adjusts padding so it looks good on mobile */
  }
}
