:root {
    --green: #65cc00;
    --gold: #ffd700;
    --black: #000000;
    --gray: #696969;
    --purple: #990099;
    --red: #800000;
    --darkgreen: #3f7f00;
    --darkgold: #998100;
  }

  * {
    font-family: helvetica;
    box-sizing: border-box;
  }
  
  body { 
     color: var(--fontColor);
     background: var(--bg);
     margin: 0;
  }
  body a {
    font-size: 18px;
    color: var(--bodyLinkColor); 
    text-decoration: none;
  }
  
  body a:hover {
    color: var(--bodyHoverColor);
    text-decoration: underline;
  }

li {
    font-size: large;
    line-height: 25px;
    margin-right: 3px;
    list-style-position: inside;
    list-style: none;
  }
  
  .list {
    list-style: square;
  }

  .list-2 {
    list-style: circle;
  }

  .container {
    width: 100%;
    position: relative;
    border: 1px solid transparent;
  }

  header {
    font-size: 19px;
    margin: 0;
    padding: 2px; 
    height: 14rem;
    border: 1px solid #000000;
    text-align: center;
    background-image: url("./images/Apple_shreds.jpg");
    overflow: hidden;
  } 

  .site-logo {
    margin-left: 0px;
    padding: 0px;
    transition: height 0.4s;
  }

  img {
    max-width: 100%;
    height: 69px;
    transition: height 0.4s;
  }

  .site-name {
    font-size: x-large;
    font-weight: bold;
    transition: height 0.4s;
  }

  .navbar {
    display: flex;
    top: 0;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem 0rem 4.5rem;
    background-color: transparent;
  }
  
  .hamburger {
    display: none;
  }

  .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
  margin-left: 0rem;
}
  
.nav-link {
    font-size: medium;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 14px 16px;
    color: var(--navFontColor);
    transition: all 0.4s;
} 
  
.nav-link:hover {
    color: var(--navAHoverColor);
    background-color: black;
    text-decoration: underline;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    height: 40px;
    width: 100%;
    border-bottom: 1px solid transparent;
    background-color: #222;
    overflow: hidden;
    z-index: 1;
}

  .sticky .btn {
    height: 29px;
    margin-top: 7px;
  }
  
  .sticky .site-logo {
    margin-top: 5px;
  }

  .sticky .site-name {
    font-size: 18px;
    color: var(--green);
    visibility: hidden;
  }
  
  .sticky img {
    height: 36px;
    margin-top: 0;
   
  }
  .sticky .nav-link {
    height: 45px;
    font-size: 15.5px;
  }

  .sticky .hamburger {
    margin-top: 5px;
  }

.bar {
  display: block;
  width: 28px;
  height: 4px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #998100;
}

@media only screen and (max-width: 864px) {
  .nav-menu {
      position: fixed;
      right: -100%;
      top: 0;
      bottom: 0;
      padding: 69px 5px;
      margin: 0;
      display: block; 
      flex-direction: column;
      background-color: #111;
      width: 45%;
      border-radius: 1px;
      text-align: center;
      transition: 0.3s;
      z-index: 1;
      box-shadow:
          0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
      right: 0;
  }

  .nav-item {
    margin: 0 0;   
  }

  .nav-link {
    text-align: left;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    margin-top: 15px;
    z-index: 2;
  }

  .site-logo{
  margin-top: 15px;
  }

}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

main {
    margin: 1rem auto;
    max-width: 1000px;
    padding: 1rem;
    line-height: 25px;
    background-color: #7f7f7f10;
  }

.section-1 {
  text-align: center;
  color: var(--darkgreen);
  padding: 5px;
  overflow: hidden;
 }

article {
  font-size: large;
  color: var(--articleFontColor);
  padding: 1rem;
  border-top: 1px solid #7f7f7f3d;
  border-bottom: 1px solid #7f7f7f3d;
  overflow: hidden;
 }
 
 .section-2 {
  text-align: left;
  font-family: sans-serif;
  font-size: large;
  color: var(--sect2Color);
  padding: 1rem;
  padding-right: 0rem;
  left: 0px;
  overflow: hidden;
}

footer {
    font-size: small; 
    margin: 0;
    position:relative;
    right: 0;
    bottom: 0;
    left: 0;
    width: "100%";
    display: flex;
    padding: 10px;
    color: #696969;
    background-color: #360000;
  }

  .light-theme {
    --bg: var(--gold);
    --fontColor: var(--black);
    --btnBg: var(--green);
    --btnFontColor: var(--black);
    --btnBorder: #665600;;
    --navFontColor: var(--gold);
    --navAHoverColor: var(--green);
    --articleFontColor: var(--black);
    --bodyLinkColor: var(--red);
    --bodyHoverColor: var(--black);
    --sect2Color: var(--black);
  }
  .dark-theme {
    --bg: var(--black);
    --fontColor: var(--green);
    --btnBg: var(--black);
    --btnFontColor: var(--gold);
    --btnBorder: #4c9900;
    --navFontColor: var(--gray);
    --navAHoverColor: var(--gold);
    --articleFontColor: var(--purple);
    --bodyLinkColor: var(--purple);
    --bodyHoverColor: var(--darkgold);
    --sect2Color: var(--darkgold);
  }

  .clearfix::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .btn {
    font-family: sans-serif;
    font-size: medium;
    font-weight: bold;
    position: absolute;
    margin: 25px 5px;
    top: 0;
    left: 0;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    border: 2px solid var(--btnBorder);
    color: var(--btnFontColor);
    background-color: var(--btnBg);
    z-index: 1;
    transition: height 0.4s;
  }

  .btn:focus { 
    outline-style: none; 
  }

  

  